mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
bb20c13651
Summary: Depends on D20016. Ref T920. This does nothing interesting on its own since the TOTP provider has no guidance/warnings, but landing it separately helps to simplify an upcoming SMS diff. SMS will have these guidance messages: - "Administrator: you haven't configured any mailer which can send SMS, like Twilio." - "Administrator: SMS is weak." - "User: you haven't configured a contact number." Test Plan: {F6151283} {F6151284} Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T920 Differential Revision: https://secure.phabricator.com/D20017
79 lines
1.5 KiB
CSS
79 lines
1.5 KiB
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: 4px;
|
|
}
|
|
|
|
.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};
|
|
}
|
|
|
|
.phui-box-white-config .phui-oi-list-big.phui-oi-list-view {
|
|
padding: 8px 8px 4px;
|
|
}
|
|
|
|
.phui-box-white-config .phui-oi-frame {
|
|
padding: 4px 8px 0;
|
|
}
|
|
|
|
.device-desktop .phui-box-white-config .phui-oi:hover .phui-oi-frame {
|
|
background-color: {$hoverblue};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.device-desktop .phui-oi-linked-container {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.device-desktop .phui-oi-linked-container:hover {
|
|
background-color: {$hoverblue};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.device-desktop .phui-oi-linked-container a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Spacing for InfoView inside an object item list, like MFA setup. */
|
|
.phui-oi .phui-info-view {
|
|
margin: 0 4px 4px;
|
|
}
|