mirror of https://github.com/apache/cloudstack.git
Style dialog
This commit is contained in:
parent
deefb7e4f1
commit
2bc536b81b
|
|
@ -151,4 +151,12 @@ body {
|
|||
overflow: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ui-dialog, .notification-box, #user-options {
|
||||
@include dialog;
|
||||
}
|
||||
|
||||
#user-options {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -15,4 +15,5 @@ html, body {
|
|||
@import "button";
|
||||
@import "form";
|
||||
@import "header";
|
||||
@import "asset";
|
||||
@import "asset";
|
||||
@import "dialog";
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
@mixin dialog {
|
||||
background: white;
|
||||
box-shadow: 0px 2px 10px black;
|
||||
position: absolute;
|
||||
padding: 20px;
|
||||
|
||||
.ui-dialog-titlebar {
|
||||
@include row;
|
||||
|
||||
width: 100%;
|
||||
background-color: white;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.ui-dialog-content {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.ui-dialog-title {
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar-close {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue