Blame view

sources/core/css/jquery.ocdialog.css 1.13 KB
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  .oc-dialog {
  	background: white;
  	color: #333333;
  	border-radius: 3px; box-shadow: 0 0 7px #888888;
  	padding: 15px;
  	z-index: 1000;
  	font-size: 100%;
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  	min-width: 200px;
  }
  .oc-dialog-title {
  	background: white;
  	font-weight: bold;
  	font-size: 110%;
  	margin-bottom: 10px;
  }
  .oc-dialog-content {
  	z-index: 1000;
  	background: white;
  }
  .oc-dialog-separator {
  }
  .oc-dialog-buttonrow {
  	background: white;
  	float: right;
  	position: relative;
  	bottom: 0;
  	display: block;
  	margin-top: 10px;
  	width: 100%;
  }
6d9380f96   Cédric Dupont   Update sources OC...
34
35
36
37
38
39
40
41
42
43
44
  /* align primary button to right, other buttons to left */
  .oc-dialog-buttonrow.twobuttons button:nth-child(1) {
  	float: left;
  }
  .oc-dialog-buttonrow.twobuttons button:nth-child(2) {
  	float: right;
  }
  
  .oc-dialog-buttonrow.onebutton button {
  	float: right;
  }
31b7f2792   Kload   Upgrade to ownclo...
45
46
47
48
49
50
51
52
53
54
55
56
  
  .oc-dialog-close {
  	position:absolute;
  	top:7px; right:7px;
  	height:20px; width:20px;
  	background:url('../img/actions/close.svg') no-repeat center;
  }
  
  .oc-dialog-dim {
  	background-color: #000;
  	opacity: .20;filter:Alpha(Opacity=20);
  	z-index: 999;
837968727   Kload   [enh] Upgrade to ...
57
  	position: fixed;
31b7f2792   Kload   Upgrade to ownclo...
58
59
60
  	top: 0; left: 0;
  	width: 100%; height: 100%;
  }