mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-11-29 11:24:11 +01:00
37 lines
647 B
CSS
37 lines
647 B
CSS
.oc-dialog {
|
|
background: white;
|
|
color: #333333;
|
|
border-radius: 3px; box-shadow: 0 0 7px #888888;
|
|
padding: 15px;
|
|
z-index: 200;
|
|
font-size: 100%;
|
|
}
|
|
.oc-dialog-title {
|
|
background: white;
|
|
font-weight: bold;
|
|
font-size: 110%;
|
|
margin-bottom: 10px;
|
|
}
|
|
.oc-dialog-content {
|
|
z-index: 200;
|
|
background: white;
|
|
overflow-y: auto;
|
|
}
|
|
.oc-dialog-separator {
|
|
}
|
|
.oc-dialog-buttonrow {
|
|
background: white;
|
|
float: right;
|
|
position: relative;
|
|
bottom: 0;
|
|
display: block;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.oc-dialog-close {
|
|
position:absolute;
|
|
top:7px; right:7px;
|
|
height:20px; width:20px;
|
|
background:url('%webroot%/core/img/actions/delete.svg') no-repeat center;
|
|
}
|