mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-08 04:41:33 +00:00
10a464bc73
Moved authors info to AUTHORS file. Updated Git urls in package.json file. Added .stylelintrc. Updated all CSS files to respect current Stylelint guidelines. Updated dependency: knex.js. Fixed notice message in no-js version of album public pages. Bumped v1 version string.
166 lines
2.5 KiB
CSS
166 lines
2.5 KiB
CSS
body {
|
|
-webkit-animation: none;
|
|
animation: none
|
|
}
|
|
|
|
#dashboard {
|
|
-webkit-animation: fadeInOpacity 0.5s;
|
|
animation: fadeInOpacity 0.5s
|
|
}
|
|
|
|
.section {
|
|
background: none
|
|
}
|
|
|
|
.menu-list a {
|
|
color: #3794d2;
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none
|
|
}
|
|
|
|
.menu-list a:hover {
|
|
color: #60a8dc;
|
|
background-color: #4d4d4d
|
|
}
|
|
|
|
.menu-list a.is-active {
|
|
color: #eff0f1;
|
|
background-color: #3794d2
|
|
}
|
|
|
|
.menu-list a[disabled] {
|
|
color: #7a7a7a;
|
|
cursor: not-allowed
|
|
}
|
|
|
|
.menu-list a[disabled]:hover {
|
|
background: none
|
|
}
|
|
|
|
ul#albumsContainer {
|
|
border-left: 0;
|
|
padding-left: 0
|
|
}
|
|
|
|
ul#albumsContainer li {
|
|
border-left: 1px solid #898b8d;
|
|
padding-left: 0.75em;
|
|
-webkit-animation: fadeInOpacity 0.5s;
|
|
animation: fadeInOpacity 0.5s
|
|
}
|
|
|
|
#page.fade-in {
|
|
-webkit-animation: fadeInOpacity 0.5s;
|
|
animation: fadeInOpacity 0.5s
|
|
}
|
|
|
|
.pagination a:not([disabled]) {
|
|
color: #eff0f1;
|
|
border-color: #4d4d4d;
|
|
background-color: #31363b
|
|
}
|
|
|
|
a.pagination-link:not(.is-current):hover,
|
|
a.pagination-next:not([disabled]):hover,
|
|
a.pagination-previous:not([disabled]):hover {
|
|
color: #eff0f1;
|
|
border-color: #60a8dc;
|
|
background-color: #31363b
|
|
}
|
|
|
|
a.pagination-link.is-current {
|
|
background-color: #3794d2;
|
|
border-color: #3794d2
|
|
}
|
|
|
|
a.pagination-link.is-current:hover {
|
|
border-color: #60a8dc
|
|
}
|
|
|
|
li[data-action="page-ellipsis"] {
|
|
cursor: pointer
|
|
}
|
|
|
|
.label {
|
|
color: #bdc3c7
|
|
}
|
|
|
|
.menu-list li ul {
|
|
border-left-color: #898b8d
|
|
}
|
|
|
|
.image-container .checkbox {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
left: 0.75rem
|
|
}
|
|
|
|
.no-touch .image-container .checkbox {
|
|
opacity: 0.5
|
|
}
|
|
|
|
.no-touch .image-container .controls,
|
|
.no-touch .image-container .details {
|
|
opacity: 0
|
|
}
|
|
|
|
.no-touch .image-container:hover .checkbox,
|
|
.no-touch .image-container:hover .controls,
|
|
.no-touch .image-container:hover .details {
|
|
opacity: 1
|
|
}
|
|
|
|
#page {
|
|
/* fix overflow issue with flex */
|
|
min-width: 0
|
|
}
|
|
|
|
.table-container {
|
|
overflow-x: auto
|
|
}
|
|
|
|
.table {
|
|
color: #bdc3c7;
|
|
background-color: #31363b;
|
|
font-size: 0.75rem
|
|
}
|
|
|
|
.table tr:hover,
|
|
.table.is-striped tbody tr:nth-child(2n) {
|
|
background: none
|
|
}
|
|
|
|
.table.is-striped tbody tr:hover,
|
|
.table.is-striped tbody tr:nth-child(2n):hover,
|
|
.tag {
|
|
background-color: #4d4d4d
|
|
}
|
|
|
|
.table td,
|
|
.table th {
|
|
border: 0;
|
|
white-space: nowrap
|
|
}
|
|
|
|
.table th {
|
|
color: #eff0f1;
|
|
height: 2.25em
|
|
}
|
|
|
|
.table thead td,
|
|
.table thead th {
|
|
color: #eff0f1;
|
|
background-color: #ff3860
|
|
}
|
|
|
|
.table .cell-indent {
|
|
padding-left: 2.25em
|
|
}
|
|
|
|
.is-linethrough {
|
|
text-decoration: line-through
|
|
}
|