Files
sx-fc/app/assets/stylesheets/application.scss
2017-11-14 15:48:22 +06:30

66 lines
1.5 KiB
SCSS
Executable File

@import "material_icons";
@import "tether";
@import "bootstrap/css/bootstrap-material-design.min";
@import "node-waves/waves";
@import "animate-css/animate";
@import "sweetalert/sweetalert.css";
@import "multi-select/css/multi-select.css";
@import "bootstrap-material-datetimepicker/css/bootstrap-material-datetimepicker";
@import "morrisjs/morris";
@import "fileinput.min";
@import "BSBMaterial/style";
@import "BSBMaterial/themes/all-themes";
@import "reset";
/*@import "bootstrap-select/css/bootstrap-select.min";*/
/*----- Order Processing Items -----*/
.opi_ul {
display:block;
padding-left:0px;
}
.opi_ul li {
display:list-item;
list-style: none;
margin-top:2px;
}
.opi_selected {
background-color:#BEA2C2 !important;
}
.opi_default {
cursor: pointer;
background-color: #E8ECF9;
line-height: inherit;
padding:5px;
}
/*----- Order Processing Items -----*/
/* ========== Select Field ========== */
/* Remove focus */
select:focus {
outline: none}
/* Hide label */
.custom-selectfield label {display: none;}
/* Use custom arrow */
.custom-selectfield select {appearance: none}
.custom-selectfield {
position: relative;
&:after {
position: absolute;
top: 1em;
right: 0.5em;
/* Styling the down arrow */
width: 0;
height: 0;
padding: 0;
content: '';
border-left: .25em solid transparent;
border-right: .25em solid transparent;
border-top: .375em solid #111;
pointer-events: none;
}
}