2017-12-14 23:25:15 -05:00
|
|
|
// component styles are encapsulated and only applied to their components
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "../../style/themes/themes";
|
2017-12-14 23:25:15 -05:00
|
|
|
|
2018-10-22 02:41:35 -04:00
|
|
|
@include themifyComponent() {
|
|
|
|
.wrapper {
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 10px;
|
|
|
|
background: linear-gradient(to right, themed(headerGradientStartColor), themed(headerGradientEndColor));
|
|
|
|
}
|
2017-12-14 23:25:15 -05:00
|
|
|
|
2018-10-22 02:41:35 -04:00
|
|
|
.header {
|
|
|
|
width: 100%;
|
|
|
|
border-top: 1px solid themed(headerBorderColor);
|
|
|
|
border-bottom: 1px solid themed(headerBorderColor);
|
|
|
|
background-color: themed(headerBgColor);
|
|
|
|
}
|
2017-12-14 23:25:15 -05:00
|
|
|
|
2018-10-22 02:41:35 -04:00
|
|
|
.header .title {
|
|
|
|
margin: 0;
|
|
|
|
width: 83.333333%; // col-sm-10
|
|
|
|
padding: 15px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .title .pageName {
|
|
|
|
font-weight: 100;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .quickAction {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
display: inline-block;
|
|
|
|
width: 15.666667%; // col-sm-2
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-12-14 23:25:15 -05:00
|
|
|
}
|