mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
This fixes the following deprecation warning ``` DEPRECATION WARNING: Extra .css in SCSS file is unnecessary. Rename /usr/src/app/app/assets/stylesheets/darkswarm/variables.css.scss to /usr/src/app/app/assets/stylesheets/darkswar m/variables.scss. (called from _app_views_layouts_darkswarm_html_haml___3990351141569700945_46957256630860 at /usr/src/app/app/views/layouts/darkswarm.html.haml:18) (...) ```
40 lines
650 B
SCSS
40 lines
650 B
SCSS
@import "variables";
|
|
|
|
form[name="enterprise_form"] {
|
|
div.row.warning {
|
|
color: $warning-orange;
|
|
}
|
|
|
|
table.managers {
|
|
i.role {
|
|
float: right;
|
|
margin-left: 0.5em;
|
|
font-size: 1.5em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
i.confirmation {
|
|
margin-left: 0.2em;
|
|
font-size: 1.2em;
|
|
cursor: pointer;
|
|
vertical-align: bottom;
|
|
|
|
&.confirmed {
|
|
color: #1ece1e;
|
|
}
|
|
|
|
&.unconfirmed {
|
|
color: #ed9524;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-enterprises-index-admin-actions-divider {
|
|
background-color: $admin-table-border;
|
|
border-width: 0;
|
|
height: 1px;
|
|
margin-bottom: 1em;
|
|
margin-top: 1em;
|
|
}
|