wide/static/css/dialog.css

122 lines
2.2 KiB
CSS
Raw Normal View History

2015-01-01 05:06:33 +03:00
/*
2019-05-17 06:28:50 +03:00
* Copyright (c) 2014-present, b3log.org
2015-01-01 05:06:33 +03:00
*
2014-11-12 18:13:14 +03:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2015-01-01 05:06:33 +03:00
*
2018-03-12 07:28:33 +03:00
* https://www.apache.org/licenses/LICENSE-2.0
2015-01-01 05:06:33 +03:00
*
2014-11-12 18:13:14 +03:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2015-01-01 05:06:33 +03:00
*/
2014-11-12 18:13:14 +03:00
/**
* dialig style
*
2018-03-13 05:58:49 +03:00
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.0.0.6, Jun 3, 2012
*/
.dialog-background {
height: 100%;
left: 0;
opacity: .3;
position: absolute;
top: 0;
width: 100%;
filter: alpha(opacity=30);
display: none;
background-color: #000000;
2014-10-20 18:27:19 +04:00
z-index: 99;
}
.dialog-panel {
position: absolute;
z-index: 100;
display: none;
-moz-user-select: none;
user-select: none;
2014-11-29 16:49:57 +03:00
box-shadow: 0 2px 10px 1px #000000;
}
.dialog-title {
float: left;
line-height: 22px;
margin-left: 3px;
2014-11-29 16:49:57 +03:00
font-weight: bold;
}
.dialog-header-bg {
height: 23px;
2015-12-06 17:54:30 +03:00
background-color: #bbb;
cursor: move;
width: 100%;
}
.dialog-close-icon {
float: right;
2014-09-24 07:35:03 +04:00
margin: 3px;
text-decoration: none;
}
2015-01-04 10:31:03 +03:00
.dialog-close-icon:hover {
text-decoration: none;
}
.dialog-main > div {
width: 100%;
}
.dialog-footer {
padding: 10px;
text-align: right;
}
2014-11-01 07:36:42 +03:00
.dialog-footer button,
#dialogCloseEditor button {
2014-10-20 18:27:19 +04:00
margin: 0 5px;
}
#dialogRemoveConfirm,
2014-09-24 07:35:03 +04:00
.dialog-prompt,
.dialog-form,
2014-09-24 07:35:03 +04:00
#dialogAlert {
2014-10-20 18:27:19 +04:00
padding: 10px 15px 0;
overflow: hidden;
}
2014-12-08 10:18:28 +03:00
.dialog-main input,
.dialog-main select {
width: 100%;
margin: 2px auto;
2014-11-14 10:03:30 +03:00
}
#dialogGoFilePrompt > ul {
2014-11-14 12:06:13 +03:00
position: relative;
2014-11-14 10:03:30 +03:00
height: 260px;
overflow: auto;
margin-top: 5px;
2014-11-14 12:06:13 +03:00
background-color: #FFF;
2014-12-01 10:05:48 +03:00
border: 1px solid #919191;
2014-11-17 09:15:28 +03:00
}
#dialogPreference {
margin: 10px;
}
#dialogPreference .tabs-panel {
padding: 10px;
2014-12-08 10:18:28 +03:00
}
#dialogPreference .preference {
margin-bottom: 10px;
2014-12-14 11:40:45 +03:00
}
#dialogPreference img.gravatar {
width: 48px;
height: 48px;
}