mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
117589c160
Summary: Removes the panel-view on login and adds additonal responsive styles for mobile forms. Test Plan: View in mobile browser, resize page. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4530
37 lines
549 B
CSS
37 lines
549 B
CSS
/**
|
|
* @provides herald-css
|
|
*/
|
|
|
|
.herald-action-table,
|
|
.herald-condition-table {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.herald-condition-table select {
|
|
width: 160px;
|
|
}
|
|
|
|
.device-phone .herald-condition-table select {
|
|
width: 90px;
|
|
}
|
|
|
|
.herald-action-table td,
|
|
.herald-condition-table td {
|
|
padding: 2px 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.herald-condition-table td.value {
|
|
width: 100%;
|
|
}
|
|
|
|
.herald-action-table td input,
|
|
.herald-condition-table td input {
|
|
width: 95%;
|
|
max-width: 460px;
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
.herald-action-table td.target {
|
|
width: 100%;
|
|
}
|