Files
phabricator/webroot/rsrc/css/application/base/phabricator-application-launch-view.css

111 lines
2.1 KiB
CSS
Raw Normal View History

/**
* @provides phabricator-application-launch-view-css
*/
/* - Application List ----------------------------------------------------------
Spacing container for the list of large application buttons.
*/
.application-tile-group {
overflow: hidden;
}
/* - Application Launch Button -------------------------------------------------
Spacing container for the list of large application buttons.
*/
a.phabricator-application-launch-container,
div.phabricator-application-launch-container {
display: block;
float: left;
overflow: hidden;
position: relative;
text-decoration: none;
-webkit-font-smoothing: antialiased;
width: 100%;
2014-05-24 21:56:45 -07:00
height: 46px;
}
.device-phone div.phabricator-application-launch-container {
display: none;
}
.phabricator-application-launch-icon {
display: block;
position: absolute;
width: 28px;
height: 28px;
2014-05-24 21:56:45 -07:00
top: 8px;
left: 8px;
}
.device-desktop a.phabricator-application-launch-container:hover {
2014-05-24 21:56:45 -07:00
background-color: #C5C8CF;
text-decoration: none;
}
.phabricator-application-launch-name {
display: block;
font-weight: bold;
2014-05-24 21:56:45 -07:00
color: {$darkbluetext};
font-size: 13px;
2014-05-24 21:56:45 -07:00
margin-top: 7px;
margin-left: 44px;
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}
2014-05-24 21:56:45 -07:00
.phabricator-application-launch-description {
color: {$darkbluetext};
font-size: 11px;
margin-top: 24px;
2014-05-24 21:56:45 -07:00
margin-left: 44px;
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}
.phabricator-application-beta {
position: absolute;
top: 4px;
left: 4px;
2014-05-24 21:56:45 -07:00
color: {$bluetext};
font-size: 11px;
}
.phabricator-application-launch-attention {
position: absolute;
top: 6px;
right: 4px;
2014-05-24 21:56:45 -07:00
color: {$darkbluetext};
font-weight: bold;
font-size: 11px;
}
.phabricator-application-attention-count {
2014-05-24 21:56:45 -07:00
background-color: rgba(0,0,0,.1);
color: {$orange};
border-radius: 2px;
padding: 1px 6px 2px;
}
.phabricator-application-warning-count {
2014-05-24 21:56:45 -07:00
background-color: rgba(0,0,0,.1);
border-radius: 2px;
padding: 1px 6px 2px;
}
.phabricator-application-attention-count + .phabricator-application-warning-count {
margin-left: 2px;
top: 8px;
}
.application-tile-full .phabricator-application-launch-attention {
top: 17px;
right: 8px;
}