83 lines
1.2 KiB
SCSS
83 lines
1.2 KiB
SCSS
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
.content {
|
|
padding: 15px 0;
|
|
}
|
|
|
|
@media (min-width: $screen-sm-min) {
|
|
.content {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
td {
|
|
&.timesheet-description {
|
|
ul {
|
|
padding-left: 15px;
|
|
}
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* ABOUT SCREEN */
|
|
.box-body .menu-icon {
|
|
width: 35px;
|
|
height: 35px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
line-height: 35px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
/* Profile */
|
|
.avatar-xs {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.avatar-sm {
|
|
width: 25px;
|
|
height: 25px;
|
|
}
|
|
.avatar-md {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
.avatar-lg {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
.box-profile {
|
|
img.img-circle {
|
|
width: 100px;
|
|
}
|
|
.profile-username {
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
|
|
.label-gray {
|
|
background-color: $gray-lte;
|
|
}
|
|
|
|
/* Delete link in action dropdowns */
|
|
.dropdown-menu > li.delete > a {
|
|
color: #dd4b39;
|
|
}
|
|
|
|
.open-edit {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* allow minimized table columns, eg. customer team & visibility */
|
|
th.w-min,
|
|
td.w-min {
|
|
width: 1%;
|
|
white-space: nowrap;
|
|
} |