mirror of
https://github.com/1f349/admin.1f349.com.git
synced 2024-11-09 22:32:57 +00:00
Fix row colors not working properly
This commit is contained in:
parent
804f88f098
commit
fcc6589043
@ -30,6 +30,14 @@
|
||||
</tr>
|
||||
|
||||
<style lang="scss">
|
||||
tr:nth-child(2n) {
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
|
||||
tr:nth-child(2n + 1) {
|
||||
background-color: #242424;
|
||||
}
|
||||
|
||||
tr.created {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
@ -41,6 +41,14 @@
|
||||
{/if}
|
||||
|
||||
<style lang="scss">
|
||||
tr:nth-child(2n) {
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
|
||||
tr:nth-child(2n + 1) {
|
||||
background-color: #242424;
|
||||
}
|
||||
|
||||
tr.created {
|
||||
background-color: #1a5100;
|
||||
|
||||
|
@ -28,6 +28,14 @@
|
||||
</tr>
|
||||
|
||||
<style lang="scss">
|
||||
tr:nth-child(2n) {
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
|
||||
tr:nth-child(2n + 1) {
|
||||
background-color: #242424;
|
||||
}
|
||||
|
||||
tr.created {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
@ -38,6 +38,14 @@
|
||||
{/if}
|
||||
|
||||
<style lang="scss">
|
||||
tr:nth-child(2n) {
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
|
||||
tr:nth-child(2n + 1) {
|
||||
background-color: #242424;
|
||||
}
|
||||
|
||||
tr.created {
|
||||
background-color: #1a5100;
|
||||
|
||||
|
@ -259,16 +259,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
tbody :global(tr) {
|
||||
&:nth-child(2n) {
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
|
||||
&:nth-child(2n + 1) {
|
||||
background-color: #242424;
|
||||
}
|
||||
}
|
||||
|
||||
:global(th),
|
||||
:global(td) {
|
||||
padding: 11px 8px 11px 8px;
|
||||
|
Loading…
Reference in New Issue
Block a user