brotherton-erpnext/erpnext/templates/includes/projects.css

178 lines
3.4 KiB
CSS
Raw Normal View History

/* CSS used here will be applied after bootstrap.css */
.underline {
text-decoration: underline;
}
.page-container .indicator {
font-weight: normal;
}
.page-container .project-item {
padding-top: 5px;
padding-bottom: 5px;
}
#project-search {
border: none;
}
.task-link {
font-weight: bold;
}
.task-link.seen {
font-weight: normal;
}
.row-header {
font-size: 14px;
font-weight: 500;
padding-bottom: 8px;
border-bottom: 2px solid #d1d8dd;
margin: 0!important;
}
.content_display{
padding: 5px;
font-weight: normal;
font-size: 12px;
vertical-align: middle;
color: #6c7680;
}
.close-btn{
display: none;
}
.content_display:hover .close-btn{
display : block;
}
.btn-link{
padding: 0 10px 0 0;
}
.bold {
font-weight: bold;
}
.task-btn, .issue-btn, .timelog-btn{
padding: 8px;
}
.timeline-centered {
position: relative;
2016-03-22 10:30:41 +00:00
margin-bottom: 10px;
}
.timeline-centered:before {
content: '';
position: absolute;
display: block;
2016-03-22 10:30:41 +00:00
width: 3px;
background: #f5f5f6;
/*left: 50%;*/
2016-03-22 10:30:41 +00:00
top: 0px;
bottom: 0px;
margin-left: 10px;
}
.timeline-centered .timeline-entry {
position: relative;
/*width: 50%;
float: right;*/
margin-top: 5px;
2016-03-22 10:30:41 +00:00
margin-left: 10px;
margin-bottom: 5px;
clear: both;
}
.timeline-centered .timeline-entry .timeline-entry-inner {
position: relative;
2016-03-22 10:30:41 +00:00
margin-left: -3px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
2016-03-25 06:34:54 +00:00
margin-top:14px;
background: #fff;
color: #737881;
display: block;
2016-03-22 10:30:41 +00:00
width: 10px;
height: 10px;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
text-align: center;
2016-03-22 10:30:41 +00:00
-moz-box-shadow: 0 0 0 2px #f5f5f6;
-webkit-box-shadow: 0 0 0 2px #f5f5f6;
box-shadow: 0 0 0 2px #f5f5f6;
line-height: 30px;
float: left;
}
2016-03-22 10:30:41 +00:00
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
background-color: #303641;
color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-secondary {
background-color: #ee4749;
color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
background-color: #98d85b;
color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
background-color: #21a9e1;
color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
2016-03-22 10:30:41 +00:00
background-color: #ffa00a;
color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
background-color: #ff5858;
color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
position: relative;
background: #f5f5f6;
padding: 1em;
2016-03-22 10:30:41 +00:00
margin-left: 40px;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
content: '';
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-width: 9px 9px 9px 0;
border-color: transparent #f5f5f6 transparent transparent;
left: 0;
top: 10px;
margin-left: -9px;
}