mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
9f65a5efb8
Summary: This needs a bunch of UI polish (critically, it's totally undiscoverable) but it basically works correctly. I'll clean it up in some followups. Test Plan: Uploaded some files via drag-and-drop, made comments, etc. Reviewed By: aran Reviewers: tomo, aran, jungejason, tuomaspelkonen CC: anjali, aran Differential Revision: 332
74 lines
1.2 KiB
CSS
74 lines
1.2 KiB
CSS
/**
|
|
* @provides aphront-panel-view-css
|
|
*/
|
|
|
|
|
|
.aphront-panel-view {
|
|
background: #f3f3f3;
|
|
border: 1px solid #c0c0c0;
|
|
border-width: 1px 0 0;
|
|
padding: 1em 2em;
|
|
margin: 1em 2em;
|
|
}
|
|
|
|
.aphront-panel-view h1 {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
padding: 2px 0 8px;
|
|
}
|
|
|
|
.aphront-panel-view-buttons {
|
|
float: right;
|
|
}
|
|
|
|
.aphront-panel-view p.aphront-panel-instructions {
|
|
margin: .5em 2em .75em;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.aphront-panel-width-form {
|
|
width: 720px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.aphront-panel-width-wide {
|
|
width: 1080px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.aphront-panel-accent {
|
|
background: #efefdf;
|
|
border: 1px solid #666622;
|
|
}
|
|
|
|
.aphront-panel-accent .aphront-form-view {
|
|
background: #fffff5;
|
|
border: 1px solid #c4c4c0;
|
|
}
|
|
|
|
.aphront-panel-preview {
|
|
background: #fbfbfb;
|
|
border-bottom: 1px solid #aaaaaa;
|
|
margin: -1em 2em 2em;
|
|
padding: 15px 20px;
|
|
}
|
|
|
|
.aphront-panel-preview-loading-text {
|
|
color: #666666;
|
|
}
|
|
|
|
.aphront-panel-flush {
|
|
margin: 0;
|
|
}
|
|
|
|
.aphront-panel-view-drag-and-drop {
|
|
background: #99ff99;
|
|
border-color: #669966;
|
|
}
|
|
|
|
.aphront-panel-view-drag-and-drop .aphront-form-view {
|
|
background: #ccffcc;
|
|
border-color: #669966;
|
|
}
|