mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-03 02:21:33 +00:00
The Admin V3 styles are now the primary styles for the application. This change promotes the `admin_v3` directory to `admin` and archives the old styles. Changes: - Renamed `app/webpacker/css/admin_v3` to `app/webpacker/css/admin`. - Renamed the previous `app/webpacker/css/admin` to `app/webpacker/css/admin_legacy`. - Moved all files referenced by V3 styles from the legacy directory to the new `admin` directory. - Updated imports in `all.scss` to distinct local files instead of relative paths. - Cleaned up `admin_legacy` by removing files that are duplicates (by name or content) of the new admin styles. - Updated `admin-style-v3` pack to point to the new location.
27 lines
519 B
SCSS
27 lines
519 B
SCSS
// Sidebar
|
|
//---------------------------------------------------
|
|
#sidebar {
|
|
overflow: visible;
|
|
border-top: 1px solid $color-border;
|
|
margin-top: 17px;
|
|
|
|
.sidebar-title {
|
|
color: $red;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
|
|
> span {
|
|
display: inline;
|
|
background: #fff;
|
|
padding: 5px 10px;
|
|
position: relative;
|
|
top: -14px;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
}
|
|
}
|