94 lines
1.9 KiB
SCSS
94 lines
1.9 KiB
SCSS
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 09-Aug-2018, 15:10:12
|
|
Author : podkrizniku
|
|
*/
|
|
|
|
#surveyReminderTracking {
|
|
background-color: white;
|
|
}
|
|
.reminder_tracking_table {
|
|
position: relative;
|
|
border-spacing: 0px;
|
|
table-layout: fixed;
|
|
padding: 0px;
|
|
margin: 0 0 40px 0;
|
|
border-collapse: collapse;
|
|
border: 1px solid $soft_blue;
|
|
border-top: none;
|
|
tr {
|
|
border-top: 1px solid $soft_blue;
|
|
}
|
|
th {
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
color: black;
|
|
border: 1px solid $soft_blue;
|
|
background-color: $soft_blue_very_lighten;
|
|
font-weight: normal;
|
|
span {
|
|
vertical-align: middle;
|
|
margin-left: 3px;
|
|
}
|
|
}
|
|
td {
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
color: black;
|
|
background-color: $grey_almost_white;
|
|
border: 1px solid $soft_blue;
|
|
}
|
|
tr.white {
|
|
td {
|
|
background-color: white;
|
|
}
|
|
}
|
|
tr.sumSprozenih {
|
|
td {
|
|
background-color: $soft_blue_very_lighten;
|
|
font-weight: 600;
|
|
border-top: 5px solid $soft_blue;
|
|
}
|
|
}
|
|
tr.sum {
|
|
td {
|
|
background-color: $soft_blue_very_lighten;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
tr.colored {
|
|
td {
|
|
background-color: $soft_blue_very_lighten;
|
|
font-weight: 500;
|
|
border-top: 5px solid $soft_blue;
|
|
}
|
|
}
|
|
td.sprozenaOpozorila {
|
|
font-weight: 500;
|
|
background-color: $soft_blue_very_lighten;
|
|
border-top: 0px !important;
|
|
}
|
|
th.sprozenaOpozorila {
|
|
font-weight: 500;
|
|
background-color: $soft_blue_very_lighten;
|
|
border-top: 0px !important;
|
|
}
|
|
td.sprozenaOpozorilaLine {
|
|
font-weight: 500;
|
|
border-left: 5px solid $soft_blue;
|
|
background-color: $soft_blue_very_lighten;
|
|
border-top: 0px !important;
|
|
}
|
|
th.sprozenaOpozorilaLine {
|
|
font-weight: 500;
|
|
border-left: 5px solid $soft_blue;
|
|
background-color: $soft_blue_very_lighten;
|
|
border-top: 0px !important;
|
|
}
|
|
}
|
|
.redCell {
|
|
background-color: red !important;} |