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() {
|
|
|
|
.header {
|
|
|
|
width: 100%;
|
2021-12-03 02:33:53 -05:00
|
|
|
padding: 32px;
|
2018-10-22 02:41:35 -04:00
|
|
|
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
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .title .pageName {
|
2021-11-30 22:06:59 -05:00
|
|
|
font-weight: 600;
|
2018-10-22 02:41:35 -04:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-12-03 02:33:53 -05:00
|
|
|
font-size: 1.5em;
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .quickAction {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
display: inline-block;
|
|
|
|
width: 15.666667%; // col-sm-2
|
|
|
|
position: relative;
|
|
|
|
}
|
2021-12-03 02:33:53 -05:00
|
|
|
|
|
|
|
.back-btn {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-btn > span:not(.dim-icon) {
|
|
|
|
margin-left: 4px;
|
|
|
|
line-height: 1em;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2021-11-30 22:06:59 -05:00
|
|
|
}
|
2021-12-03 02:33:53 -05:00
|
|
|
|