2013-03-05 17:46:09 +01:00
|
|
|
/**
|
|
|
|
* @provides aphront-bars
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Progress bars
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.aphront-bar.progress {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.progress div {
|
|
|
|
width: 100px;
|
|
|
|
border: 1px solid;
|
2013-09-13 17:29:16 +02:00
|
|
|
border-top-color: {$lightgreyborder};
|
|
|
|
border-right-color: {$lightgreyborder};
|
|
|
|
border-bottom-color: {$lightgreyborder};
|
|
|
|
border-left-color: {$greyborder};
|
2013-03-05 17:46:09 +01:00
|
|
|
background: white;
|
|
|
|
float: left;
|
2013-09-13 17:29:16 +02:00
|
|
|
margin-right: 12px;
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.progress div div {
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.progress span {
|
2013-09-02 22:57:48 +02:00
|
|
|
color: {$darkgreytext};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Glyph bars
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.aphront-bar.glyph {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph div.glyphs {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
color: #aaa;
|
|
|
|
font-family: monospace;
|
2013-09-13 17:29:16 +02:00
|
|
|
height: 16px;
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph div.glyphs.starstar {
|
|
|
|
/* http://daringfireball.net/2005/08/star_star */
|
|
|
|
font-family: "Hiragino Kaku Gothic Pro", "Osaka", "Zapf Dingbats";
|
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph div.glyphs div.fg {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
float: left;
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph div.caption {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
float: left;
|
2013-09-13 17:29:16 +02:00
|
|
|
margin-left: 12px;
|
2013-09-02 17:08:54 +02:00
|
|
|
color: {$greytext};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Common color classes
|
|
|
|
*/
|
|
|
|
div.aphront-bar.progress.color-default div div {
|
2013-09-13 17:29:16 +02:00
|
|
|
background: {$blue};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph.color-default div.glyphs div.fg {
|
2013-09-13 17:29:16 +02:00
|
|
|
color: {$blue};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.progress.color-warning div div {
|
2013-09-13 17:29:16 +02:00
|
|
|
background: {$yellow};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph.color-warning div.glyphs div.fg {
|
2013-09-13 17:29:16 +02:00
|
|
|
color: {$yellow};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.progress.color-danger div div {
|
2013-09-13 17:29:16 +02:00
|
|
|
background: {$red};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.aphront-bar.glyph.color-danger div.glyphs div.fg {
|
2013-09-13 17:29:16 +02:00
|
|
|
color: {$red};
|
2013-03-05 17:46:09 +01:00
|
|
|
}
|