mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
Fix sass-lint errors
This commit is contained in:
parent
486738d0a7
commit
493097b131
1 changed files with 17 additions and 10 deletions
27
resources/assets/sass/dashboard.scss
vendored
27
resources/assets/sass/dashboard.scss
vendored
|
@ -213,18 +213,26 @@ body {
|
|||
&:not(:first-child) { border-top: 1px solid #ddd; }
|
||||
}
|
||||
|
||||
> tbody > tr > td {
|
||||
&:first-child { padding-top: 20px; }
|
||||
&:last-child { padding-bottom: 20px; }
|
||||
}
|
||||
|
||||
> tbody > tr {
|
||||
&:first-child > td:first-child { padding-top: 0px; }
|
||||
&:last-child > td:last-child { padding-bottom: 0px; }
|
||||
|
||||
> td {
|
||||
display: block;
|
||||
border-top: 0;
|
||||
|
||||
&:first-child {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child > td:first-child {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
&:last-child > td:last-child {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -299,7 +307,6 @@ body {
|
|||
opacity: 1;
|
||||
transition: opacity 100ms;
|
||||
cursor: grab;
|
||||
cursor: -webkit-grabbing;
|
||||
|
||||
@media (max-width: $screen-xs-max) {
|
||||
position: absolute;
|
||||
|
@ -403,7 +410,7 @@ body {
|
|||
display: block;
|
||||
width: 100%;
|
||||
|
||||
&:not([type=file]) {
|
||||
&:not([type="file"]) {
|
||||
padding: 5px 8px;
|
||||
border: 1px solid darken($c-dashboard-light, 10%);
|
||||
border-radius: 2px;
|
||||
|
|
Loading…
Reference in a new issue