mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
7aeefc0cca
Summary: Mostly this is an exercise to clean up our CSS and Celerity processor by making sure all important color decisions are generatable. It's somewhat resonable to use if you don't review code. Posting it up here mostly so I don't lose the work. Test Plan: Visit lots and lots of pages with dark mode on and off. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18227
48 lines
826 B
CSS
48 lines
826 B
CSS
/**
|
|
* @provides phui-oi-big-ui-css
|
|
* @requires phui-oi-list-view-css
|
|
*/
|
|
|
|
.phui-oi-list-big ul.phui-oi-list-view {
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-no-bar .phui-oi-frame {
|
|
border: 0;
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-image-icon {
|
|
margin: 8px 2px 12px;
|
|
}
|
|
|
|
.phui-oi-list-big a.phui-oi-link {
|
|
color: {$blacktext};
|
|
font-size: {$biggestfontsize};
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-name {
|
|
padding-top: 6px;
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-launch-button a.button {
|
|
font-size: {$normalfontsize};
|
|
padding: 3px 12px 4px;
|
|
}
|
|
|
|
.device-desktop .phui-oi-list-big .phui-oi {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-col0 {
|
|
vertical-align: top;
|
|
padding: 0;
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-status-icon {
|
|
padding: 5px;
|
|
}
|
|
|
|
.phui-oi-list-big .phui-oi-visited a.phui-oi-link {
|
|
color: {$violet};
|
|
}
|