2016-02-08 23:37:31 +01:00
|
|
|
/**
|
|
|
|
* @provides phui-segment-bar-view-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-segment-bar-label {
|
|
|
|
font-size: {$smallerfontsize};
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2017-01-31 17:58:33 +01:00
|
|
|
.phui-basic-nav .phui-segment-bar-label {
|
|
|
|
width: 180px;
|
2016-02-12 02:04:14 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2016-02-08 23:37:31 +01:00
|
|
|
.phui-segment-bar-segments {
|
2017-01-31 17:58:33 +01:00
|
|
|
background: rgba({$alphablue}, .1);
|
2016-02-08 23:37:31 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2016-02-09 02:31:21 +01:00
|
|
|
margin-left: -5px;
|
2016-02-08 23:37:31 +01:00
|
|
|
border-right: 5px solid;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.red {
|
|
|
|
background: {$red};
|
|
|
|
border-color: {$red};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.orange {
|
|
|
|
background: {$orange};
|
|
|
|
border-color: {$orange};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.yellow {
|
|
|
|
background: {$yellow};
|
|
|
|
border-color: {$yellow}
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.green {
|
|
|
|
background: {$green};
|
|
|
|
border-color: {$green};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.blue {
|
|
|
|
background: {$blue};
|
|
|
|
border-color: {$blue};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.indigo {
|
|
|
|
background: {$indigo};
|
|
|
|
border-color: {$indigo};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.violet {
|
|
|
|
background: {$violet};
|
|
|
|
border-color: {$violet};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.pink {
|
|
|
|
background: {$pink};
|
|
|
|
border-color: {$pink};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-segment-bar-segment-view.sky {
|
|
|
|
background: {$sky};
|
|
|
|
border-color: {$sky};
|
|
|
|
}
|