mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-30 10:42:41 +01:00
34 lines
527 B
CSS
34 lines
527 B
CSS
|
/**
|
||
|
* @provides phui-head-thing-view-css
|
||
|
*/
|
||
|
|
||
|
.phui-head-thing-view {
|
||
|
height: 24px;
|
||
|
line-height: 22px;
|
||
|
color: {$greytext};
|
||
|
position: relative;
|
||
|
padding-left: 32px;
|
||
|
}
|
||
|
|
||
|
.device-phone .phui-head-thing-view {
|
||
|
min-height: 24px;
|
||
|
height: auto;
|
||
|
line-height: inherit;
|
||
|
}
|
||
|
|
||
|
.phui-head-thing-view a {
|
||
|
color: {$darkgreytext};
|
||
|
}
|
||
|
|
||
|
.phui-head-thing-image {
|
||
|
height: 24px;
|
||
|
width: 24px;
|
||
|
background-size: 100%;
|
||
|
margin-right: 8px;
|
||
|
border-radius: 3px;
|
||
|
display: inline-block;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
}
|