|
@@ -2493,22 +2493,28 @@ table.table-cage {
|
|
|
}
|
|
|
|
|
|
table.table-cage tr:first-child td {
|
|
|
- border-top: 0px;
|
|
|
+ border-top: 0;
|
|
|
}
|
|
|
|
|
|
table.table-cage tr:last-child td {
|
|
|
- border-bottom: 0px;
|
|
|
+ border-bottom: 0;
|
|
|
}
|
|
|
|
|
|
table.table-cage tr td:first-child {
|
|
|
- border-left: 0px;
|
|
|
+ border-left: 0;
|
|
|
}
|
|
|
|
|
|
table.table-cage tr td:last-child {
|
|
|
- border-right: 0px;
|
|
|
+ border-right: 0;
|
|
|
+ border-left: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+table.table-cage tr td:nth-last-child(2) {
|
|
|
+ border-right: 0 !important;
|
|
|
}
|
|
|
+
|
|
|
table.table-xs tr td {
|
|
|
- padding: 0.15rem;
|
|
|
+ padding: 0.15rem;
|
|
|
}
|
|
|
|
|
|
[if-edit-mode], [if-read-mode] {
|
|
@@ -2520,25 +2526,30 @@ table.table-xs tr td {
|
|
|
.read [if-read-mode] {
|
|
|
display: block;
|
|
|
}
|
|
|
-.rspace input[type="radio"]:checked {
|
|
|
+
|
|
|
+/* colored radios */
|
|
|
+.rspace input[type="radio"][value="-"]:checked,
|
|
|
+.rspace input[type="radio"][value="+"]:checked{
|
|
|
position: relative;
|
|
|
}
|
|
|
-.rspace input[type="radio"]:checked:before,
|
|
|
-.rspace input[type="radio"]:checked:after {
|
|
|
+.rspace input[type="radio"][value="-"]:checked:before,
|
|
|
+.rspace input[type="radio"][value="+"]:checked:before
|
|
|
+.rspace input[type="radio"][value="-"]:checked:after,
|
|
|
+.rspace input[type="radio"][value="+"]:checked:after{
|
|
|
content: '';
|
|
|
position: absolute;
|
|
|
border-radius: 100%;
|
|
|
background:#fff;
|
|
|
}
|
|
|
-
|
|
|
-/* colored radios */
|
|
|
-.rspace input[type="radio"]:checked:before {
|
|
|
+.rspace input[type="radio"][value="-"]:checked:before,
|
|
|
+.rspace input[type="radio"][value="+"]:checked:before{
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
-.rspace input[type="radio"]:checked:after {
|
|
|
+.rspace input[type="radio"][value="-"]:checked:after,
|
|
|
+.rspace input[type="radio"][value="+"]:checked:after{
|
|
|
top: 3px;
|
|
|
left: 3px;
|
|
|
width: calc(100% - 6px);
|