Blame view

sources/apps/user_ldap/css/settings.css 1.77 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
34
35
  .table {
  	display: table;
  	width: 60%;
  }
  
  .tablerow {
  	display: table-row;
  	white-space: nowrap;
  }
  
  .tablerow input, .tablerow textarea {
  	width: 100% !important;
  }
  
  .tablerow textarea {
  	height: 15px;
  }
  
  .invisible {
  	visibility: hidden;
  }
  
  .ldapSettingsTabs {
  	float: right !important;
  }
  
  .ldapWizardControls {
  	width: 60%;
  	text-align: right;
  }
  
  .ldapWizardInfo {
  	width: 100% !important;
  	height: 50px;
  	background-color: lightyellow;
6d9380f96   Cédric Dupont   Update sources OC...
36
37
38
  	border-radius: 8px;
  	padding: 10px 8px 6px !important;
  	margin-bottom: 5px;
31b7f2792   Kload   Upgrade to ownclo...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  }
  
  #ldapWizard1 .hostPortCombinator {
  	width: 60%;
  	display: table;
  }
  
  #ldapWizard1 .hostPortCombinator div span {
  	width: 7%;
  	display: table-cell;
  	text-align: right;
  }
  
  #ldapWizard1 .host {
  	width: 96.5% !important;
  }
  
  .tableCellInput {
  	margin-left: -40%;
  	width: 100%;
  }
  
  .tableCellLabel {
  	text-align: right;
  	padding-right: 25%;
  }
  
  .ldapIndent {
  	margin-left: 50px;
  }
  
  .ldapwarning {
6d9380f96   Cédric Dupont   Update sources OC...
71
  	margin-left: 22px;
31b7f2792   Kload   Upgrade to ownclo...
72
73
74
75
76
  	color: #FF3B3B;
  }
  
  .wizSpinner {
  	height: 15px;
6d9380f96   Cédric Dupont   Update sources OC...
77
  	margin: 5px;
31b7f2792   Kload   Upgrade to ownclo...
78
79
80
  }
  
  .ldapSettingControls {
6d9380f96   Cédric Dupont   Update sources OC...
81
  	margin-top: 3px;
31b7f2792   Kload   Upgrade to ownclo...
82
  }
03e52840d   Kload   Init
83
84
85
86
87
  #ldap fieldset p label {
  	width: 20%;
  	max-width: 200px;
  	display: inline-block;
  	vertical-align: top;
31b7f2792   Kload   Upgrade to ownclo...
88
  	text-align: right;
03e52840d   Kload   Init
89
  	padding-top: 9px;
31b7f2792   Kload   Upgrade to ownclo...
90
91
92
93
94
  	padding-right: 5px;
  }
  
  #ldap fieldset input[type=submit] {
  	width: auto;
03e52840d   Kload   Init
95
96
97
  }
  
  #ldap fieldset input, #ldap fieldset textarea {
31b7f2792   Kload   Upgrade to ownclo...
98
   	width: 60%;
03e52840d   Kload   Init
99
  }
31b7f2792   Kload   Upgrade to ownclo...
100
101
  #ldap fieldset p input[type=checkbox] {
  	vertical-align: bottom;
03e52840d   Kload   Init
102
  }
31b7f2792   Kload   Upgrade to ownclo...
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  select[multiple=multiple] + button {
  	height: 28px;
  	padding-top: 6px !important;
  	min-width: 40%;
  	max-width: 40%;
  }
  
  .ldap_config_state_indicator_sign {
  	display: inline-block;
  	height: 16px;
  	width: 16px;
  	vertical-align: text-bottom;
  }
  .ldap_config_state_indicator_sign.success {
  	background: #37ce02;
  	border-radius: 8px;
  }
  .ldap_config_state_indicator_sign.error {
  	background: #ce3702;
  }
  
  .ldap_grey {
  	color: #777;
6d9380f96   Cédric Dupont   Update sources OC...
126
  }