Files
openfoodnetwork/app/webpacker/css/admin/index_panel_buttons.scss
David Cook c4a335548a Rename warning color variable
To match the others in the variables file.

Also `warning-orange` was unused.
2023-08-03 09:49:29 +10:00

33 lines
688 B
SCSS

tbody.panel-ctrl {
tr.panel-row {
> td {
a.update {
cursor: pointer;
margin-top: 10px;
margin-bottom: 10px;
font-size: 1.3rem;
background-color: $color-warning;
&:hover {
background-color: #cd4e4f;
}
&.disabled {
background-color: #c1c1c1;
}
&.saving {
background-color: #ff9848;
i.icon-refresh {
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
}
span {
i {
font-size: 1.5rem;
margin-left: 10px;
}
}
}
}
}
}