yellow/system/plugins/webinterface.css

129 lines
5.3 KiB
CSS
Raw Normal View History

2016-10-12 10:03:43 +00:00
/* Yellow web interface 0.6.13 */
2013-04-14 22:41:04 +00:00
2015-05-26 08:27:28 +00:00
.yellow-bar { position:relative; overflow:hidden; height:2em; margin-bottom:10px; }
2013-12-05 22:30:45 +00:00
.yellow-bar-left { display:block; float:left; }
.yellow-bar-right { display:block; float:right; }
2015-05-24 15:31:17 +00:00
.yellow-bar-right a { margin-left:1em; }
2015-05-23 17:24:56 +00:00
.yellow-bar-right #yellow-pane-create-link { padding:0 0.5em; }
.yellow-bar-right #yellow-pane-delete-link { padding:0 0.5em; }
2015-05-26 13:55:39 +00:00
.yellow-body-modal-open { overflow:hidden; }
.yellow-body-modal-open .page { display:none; }
2013-04-14 22:41:04 +00:00
.yellow-pane {
position:absolute; display:none; z-index:100;
2016-07-10 23:50:40 +00:00
margin:10px 0; padding:10px;
2015-05-26 13:55:39 +00:00
background-color:#fff; color:#000;
2013-05-23 06:24:50 +00:00
border:1px solid #bbb;
border-radius:4px; box-shadow:2px 4px 10px rgba(0, 0, 0, 0.2);
2013-05-23 06:24:50 +00:00
}
2015-05-26 13:55:39 +00:00
.yellow-pane h1 { color:#000; }
2013-05-01 20:16:05 +00:00
.yellow-pane p { margin:0.5em; }
2013-05-23 06:24:50 +00:00
.yellow-pane ul { list-style:none; margin:0 0.5em; padding:0; }
.yellow-pane div { overflow:hidden; }
2016-10-12 10:03:43 +00:00
.yellow-close { display:block; float:right; padding:0 0.5em; font-size:1.1em; color:#bbb; text-decoration:none; }
.yellow-close:hover { color:#000; text-decoration:none; }
.yellow-arrow { position:absolute; top:0; left:0; }
.yellow-arrow:after, .yellow-arrow:before {
position:absolute;
bottom:100%;
height:0; width:0;
border:solid transparent;
content:" ";
}
.yellow-arrow:after {
border-color:rgba(255, 255, 255, 0);
border-bottom-color:#fff;
border-width:10px;
margin-left:-10px;
}
.yellow-arrow:before {
border-color:rgba(187, 187, 187, 0);
border-bottom-color:#bbb;
border-width:11px;
margin-left:-11px;
}
2013-04-14 22:41:04 +00:00
2015-05-26 08:27:28 +00:00
.yellow-form-control {
margin:0; padding:2px 4px;
2014-06-19 13:22:41 +00:00
display:inline-block;
2015-05-26 08:27:28 +00:00
background-color:#fff; color:#000;
background-image:linear-gradient(to bottom, #fff, #fff);
border:1px solid #bbb;
border-radius:4px;
font-size:0.9em; font-family:inherit; font-weight:normal; line-height:normal;
}
.yellow-btn {
margin:0; padding:4px 22px;
2016-04-12 13:58:56 +00:00
display:inline-block; min-width:8em;
2014-06-19 13:22:41 +00:00
background-color:#eaeaea; color:#333333;
2015-03-09 14:57:40 +00:00
background-image:linear-gradient(to bottom, #f8f8f8, #e1e1e1);
border:1px solid #bbb;
2015-03-09 14:57:40 +00:00
border-color:#c1c1c1 #c1c1c1 #aaaaaa;
2015-05-26 08:27:28 +00:00
border-radius:4px;
outline-offset:-2px;
2014-06-19 13:22:41 +00:00
font-size:0.9em; font-family:inherit; font-weight:normal; line-height:1;
text-align:center; text-decoration:none;
}
2015-05-26 08:27:28 +00:00
.yellow-btn:hover, .yellow-btn:focus, .yellow-btn:active {
2014-06-19 13:22:41 +00:00
color:#333333;
2015-05-26 08:27:28 +00:00
background-image:none;
2014-06-19 13:22:41 +00:00
text-decoration:none;
2013-05-23 06:24:50 +00:00
}
2013-05-01 20:16:05 +00:00
.yellow-btn:active { box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.1); }
2015-05-26 08:27:28 +00:00
.yellow-btn-delete {
background-color:#c33c35; color:#ffffff;
background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);
border-color:#b13121 #b13121 #802020;
}
2015-05-26 08:27:28 +00:00
.yellow-btn-delete:hover, .yellow-btn-delete:focus, .yellow-btn-delete:active { color:#ffffff; }
2013-05-01 20:16:05 +00:00
2015-10-06 12:19:11 +00:00
#yellow-pane-login { text-align:center; white-space:nowrap; }
2015-05-26 13:55:39 +00:00
#yellow-pane-login h1 { margin:0 1em; font-size:2em; }
2016-05-15 16:35:10 +00:00
#yellow-pane-login .yellow-form-control { width:15em; box-sizing:border-box; }
2015-10-06 12:19:11 +00:00
#yellow-pane-login .yellow-btn { width:15em; margin:1em 1em 0.5em 0; }
2016-04-12 13:58:56 +00:00
#yellow-pane-login-fields { width:15em; text-align:left; margin:0 auto; }
#yellow-pane-login-buttons { margin:0.5em 0; }
#yellow-pane-login-buttons p { margin:0; }
#yellow-pane-signup { text-align:center; white-space:nowrap; }
#yellow-pane-signup h1 { margin:0 1em; font-size:2em; }
2016-05-15 16:35:10 +00:00
#yellow-pane-signup .yellow-form-control { width:15em; box-sizing:border-box; }
2016-04-12 13:58:56 +00:00
#yellow-pane-signup .yellow-btn { width:15em; margin:1em 1em 0.5em 0; }
#yellow-pane-signup-status { margin:0.5em 0; display:inline-block; }
#yellow-pane-signup-fields { width:15em; text-align:left; margin:0 auto; }
#yellow-pane-signup-buttons { margin-top:-0.5em; }
#yellow-pane-recover { text-align:center; white-space:nowrap; }
#yellow-pane-recover h1 { margin:0 1em; font-size:2em; }
2016-05-15 16:35:10 +00:00
#yellow-pane-recover .yellow-form-control { width:15em; box-sizing:border-box; }
2016-04-12 13:58:56 +00:00
#yellow-pane-recover .yellow-btn { width:15em; margin:1em 1em 0.5em 0; }
#yellow-pane-recover-status { margin:0.5em 0; display:inline-block; }
#yellow-pane-recover-fields-first, #yellow-pane-recover-fields-second { width:15em; text-align:left; margin:0 auto; }
#yellow-pane-recover-buttons { margin-top:-0.5em; }
2016-05-15 16:35:10 +00:00
#yellow-pane-settings { text-align:center; white-space:nowrap; }
#yellow-pane-settings h1 { margin:0 1em; font-size:2em; }
#yellow-pane-settings .yellow-form-control { width:15em; box-sizing:border-box; }
#yellow-pane-settings .yellow-btn { width:15em; margin:1em 1em 0.5em 0; }
2016-06-02 15:31:42 +00:00
#yellow-pane-settings-status { margin:0.5em 0; display:inline-block; }
2016-05-15 16:35:10 +00:00
#yellow-pane-settings-fields { width:15em; text-align:left; margin:0 auto; }
2016-06-02 15:31:42 +00:00
#yellow-pane-settings-buttons { margin-top:-0.5em; }
2016-05-15 16:35:10 +00:00
2016-08-16 08:16:13 +00:00
#yellow-pane-version { text-align:center; white-space:nowrap; }
#yellow-pane-version h1 { margin:0 1em; font-size:2em; }
#yellow-pane-version .yellow-btn { width:15em; margin:1em 1em 0.5em 0; }
#yellow-pane-version-status { margin:0.5em 0; display:inline-block; }
#yellow-pane-version-fields { width:20em; text-align:left; margin:0 auto; }
#yellow-pane-version-buttons { margin-top:-0.5em; }
2013-12-05 22:30:45 +00:00
#yellow-pane-edit { }
2015-10-21 12:28:56 +00:00
#yellow-pane-edit h1 { margin:0 0 10px 0; font-size:1.5em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
2015-05-26 08:27:28 +00:00
#yellow-pane-edit-page { padding:5px; outline:none; resize:none; }
#yellow-pane-edit-buttons { margin-top:5px; }
#yellow-pane-edit-buttons input { margin-right:10px; }
2016-04-12 13:58:56 +00:00
#yellow-pane-edit-help { float:right; }
2016-05-15 16:35:10 +00:00
2015-05-23 17:24:56 +00:00
#yellow-pane-user { cursor:pointer; }
#yellow-pane-user a { text-decoration:none; }
#yellow-pane-user a:hover { text-decoration:underline; }