mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
naming convention and wrap all styles inside .table-shadow-box to avoid unexpected style in the future
This commit is contained in:
parent
3f12afce28
commit
36ace3e56c
@ -81,33 +81,34 @@ h2 {
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
tbody .shadow-box {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
div.tableShadowbox {
|
||||
.table-shadow-box {
|
||||
padding: 10px !important;
|
||||
|
||||
thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
tbody {
|
||||
.shadow-box {
|
||||
background-color: white;
|
||||
}
|
||||
}
|
||||
|
||||
tr {
|
||||
margin-top: 0 !important;
|
||||
padding: 10px !important;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
|
||||
td {
|
||||
border-bottom: 1px solid $dark-font-color;
|
||||
display: block;
|
||||
padding: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tableShadowbox tr {
|
||||
margin-top: 0 !important;
|
||||
padding: 10px !important;
|
||||
}
|
||||
|
||||
.tableShadowbox thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tableShadowbox tr {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.tableShadowbox td {
|
||||
border-bottom: 1px solid $dark-font-color;
|
||||
display: block;
|
||||
padding: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
// Dark Theme override here
|
||||
@ -224,8 +225,12 @@ h2 {
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
tbody .shadow-box {
|
||||
background-color: $dark-bg2;
|
||||
.table-shadow-box {
|
||||
tbody {
|
||||
.shadow-box {
|
||||
background-color: $dark-bg2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -38,7 +38,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="shadow-box tableShadowbox" style="overflow-x: scroll">
|
||||
<div class="shadow-box table-shadow-box" style="overflow-x: scroll">
|
||||
<table class="table table-borderless table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -128,7 +128,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="shadow-box tableShadowbox">
|
||||
<div class="shadow-box table-shadow-box">
|
||||
<table class="table table-borderless table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user