Files
openfoodnetwork/app/assets/stylesheets/admin/enterprise_index_panels.css.scss

114 lines
2.1 KiB
SCSS

.enterprise_package_panel, .enterprise_producer_panel {
.info {
p {
font-size: 1rem;
margin: 10px 0px;
}
}
a.update {
cursor: pointer;
margin-bottom: 10px;
font-size: 1.3rem;
background-color: #DA5354;
&: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;
}
}
}
a.selector {
display: block;
position: relative;
margin-bottom: 20px;
border: 2px solid black;
text-align: center;
// width: 100%;
cursor: pointer;
&, & * {
color: white;
}
&:hover {
&:after {
border-top-color: #9fc820;
}
}
&.disabled{
background-color: #C1C1C1;
}
.bottom {
background: repeating-linear-gradient(60deg, rgba(84, 152, 218, 0), rgba(84, 152, 218, 0) 5px, rgba(255, 255, 255, 0.25) 5px, rgba(255, 255, 255, 0.25) 10px);
margin-top: 1em;
margin-left: -15px;
margin-right: -15px;
padding: 5px;
text-transform: uppercase;
}
&.selected {
background-color: #000000;
&:after {
top: 50%;
left: 0;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-right: 20px solid #000000;
margin-top: -20px;
margin-left: -20px;
}
}
}
}
.enterprise_status_panel {
.status-ok {
margin: 30px 0px;
i.icon-ok-sign {
color: #9fc820;
font-size: 1.5rem;
}
}
td.description{
font-size: 0.9rem;
}
td.severity {
text-align: center;
i {
font-size: 1.5rem;
&.issue{
color: #da5354;
}
&.warning{
color: #ff9848;
}
}
}
}