diff options
| author | Zephyrrus <[email protected]> | 2020-07-20 23:01:45 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-07-20 23:01:45 +0300 |
| commit | 18bb451f793677a5bbfdc2c14128bae33c66dfde (patch) | |
| tree | 12e5e02d793b11bfac3dafd5078a1f0b2464d6ce /src/site/assets | |
| parent | fix: return the edited/changed/delete entity from API (diff) | |
| download | host.fuwn.me-18bb451f793677a5bbfdc2c14128bae33c66dfde.tar.xz host.fuwn.me-18bb451f793677a5bbfdc2c14128bae33c66dfde.zip | |
feat: implement all-in-one file detail viewer, tag editor and album selection modal
Diffstat (limited to 'src/site/assets')
| -rw-r--r-- | src/site/assets/styles/_colors.scss | 12 | ||||
| -rw-r--r-- | src/site/assets/styles/style.scss | 6 |
2 files changed, 17 insertions, 1 deletions
diff --git a/src/site/assets/styles/_colors.scss b/src/site/assets/styles/_colors.scss index 0bc7c5e..e8b17c4 100644 --- a/src/site/assets/styles/_colors.scss +++ b/src/site/assets/styles/_colors.scss @@ -69,3 +69,15 @@ $sidebar-box-shadow: none; $menu-item-color: $textColor; $menu-item-hover-color: $textColorHighlight; $menu-item-active-background-color: $backgroundAccent; + +// dropdown +$dropdown-content-background-color: $background; +$dropdown-item-hover-background-color: $backgroundAccentLighter; +$dropdown-item-color: $textColor; +$dropdown-item-hover-color: $textColorHighlight; +$dropdown-item-active-color: $textColorHighlight; +$dropdown-item-active-background-color: hsl(171, 100%, 41%); // $primary + +// tags +$tag-background-color: $base-2; +$tag-color: $textColor; diff --git a/src/site/assets/styles/style.scss b/src/site/assets/styles/style.scss index 026f277..4ad0471 100644 --- a/src/site/assets/styles/style.scss +++ b/src/site/assets/styles/style.scss @@ -360,7 +360,7 @@ table.table { margin: 0 !important; } -.fucking-opl-shut-up { +.has-centered-items { display: flex; justify-content: center; align-items: center; @@ -399,3 +399,7 @@ table.table { } } } + +.dropdown-content a { + text-decoration: none; +} |