You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

480 lines
8.7 KiB

  1. html,body {
  2. height: 100%;
  3. }
  4. form {
  5. margin-top: 20px;
  6. }
  7. table {
  8. margin-top: 20px;
  9. }
  10. .required {
  11. color: #f00;
  12. }
  13. .tooltip-inner {
  14. min-width: 200px;
  15. }
  16. .margin-top {
  17. margin-top: 20px;
  18. }
  19. .no-margin-top {
  20. margin-top: 0px !important;
  21. }
  22. table {
  23. max-width: 100%;
  24. }
  25. td.clip {
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. max-width: 0;
  30. }
  31. th.w-10 {
  32. width: 10%;
  33. }
  34. th.w-15 {
  35. width: 15%;
  36. }
  37. th.w-20 {
  38. width: 20%;
  39. }
  40. th.w-25 {
  41. width: 25%;
  42. }
  43. th.w-30 {
  44. width: 30%;
  45. }
  46. th.w-35 {
  47. width: 35%;
  48. }
  49. th.w-40 {
  50. width: 40%;
  51. }
  52. /*********** Loading ***********/
  53. .loading {
  54. background-color: #f5f5f5;
  55. border: 1px solid #eee;
  56. position: absolute;
  57. bottom: 0px;
  58. left: 0px;
  59. padding: 2px 200px 2px 5px;
  60. }
  61. /*********** Feedback ***********/
  62. .feedback-aligner {
  63. position: fixed;
  64. top: 15px;
  65. text-align: center;
  66. width: 100%;
  67. height: 0;
  68. z-index: 100;
  69. }
  70. .feedback-aligner .alert {
  71. border-radius: 2px;
  72. border-width: 1px;
  73. display: inline-block;
  74. position: relative;
  75. }
  76. /*********** On-Off Switch ***********/
  77. .onoffswitch {
  78. -moz-user-select: none;
  79. height: 26px;
  80. position: relative;
  81. width: 62px;
  82. }
  83. .onoffswitch .onoffswitch-checkbox {
  84. display: none;
  85. }
  86. .onoffswitch .onoffswitch-label {
  87. border: 1px solid #bbb;
  88. border-radius: 2px;
  89. cursor: pointer;
  90. display: block;
  91. overflow: hidden;
  92. width: 62px;
  93. }
  94. .onoffswitch .onoffswitch-inner {
  95. display: block;
  96. margin-left: -100%;
  97. transition: margin 0.3s ease-in 0s;
  98. width: 200%;
  99. }
  100. .onoffswitch .onoffswitch-inner > span {
  101. -moz-box-sizing: border-box;
  102. color: white;
  103. float: left;
  104. font-size: 11px;
  105. font-family: "Open Sans", sans-serif;
  106. font-weight: bold;
  107. height: 24px;
  108. line-height: 24px;
  109. padding: 0;
  110. width: 50%;
  111. }
  112. .onoffswitch .onoffswitch-switch {
  113. background-image: linear-gradient(top, #fafafa 0%, #ededed 100%);
  114. background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
  115. background-image: -moz-linear-gradient(top, #fafafa 0%, #ededed 100%);
  116. background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
  117. background-image: -ms-linear-gradient(top, #fafafa 0%, #ededed 100%);
  118. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fafafa), color-stop(1, 0, #ededed));
  119. border: 1px solid #aaa;
  120. border-radius: 2px;
  121. bottom: 0;
  122. margin: 0;
  123. position: absolute;
  124. right: 39px;
  125. top: 0;
  126. transition: all 0.3s ease-in 0s;
  127. -webkit-transition: all 0.3s ease-in 0s;
  128. width: 23px;
  129. }
  130. .onoffswitch .onoffswitch-inner .onoffswitch-active {
  131. background-image: linear-gradient(top, #00a9ec 0%, #009bd3 100%);
  132. background-image: -o-linear-gradient(top, #00a9ec 0%, #009bd3 100%);
  133. background-image: -moz-linear-gradient(top, #00a9ec 0%, #009bd3 100%);
  134. background-image: -webkit-linear-gradient(top, #00a9ec 0%, #009bd3 100%);
  135. background-image: -ms-linear-gradient(top, #00a9ec 0%, #009bd3 100%);
  136. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #00a9ec), color-stop(1, 0, #009bd3));
  137. color: #FFFFFF;
  138. padding-left: 10px;
  139. }
  140. .onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-inner .onoffswitch-active,
  141. .onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-inner .onoffswitch-inactive {
  142. background-image: none;
  143. background-color: #e5e5e5;
  144. color: #9d9fa1;
  145. }
  146. .onoffswitch .onoffswitch-inner .onoffswitch-inactive {
  147. background: linear-gradient(#fefefe, #e8e8e8) repeat scroll 0 0 transparent;
  148. color: #4d5258;
  149. padding-right: 10px;
  150. text-align: right;
  151. }
  152. .onoffswitch .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  153. margin-left: 0;
  154. }
  155. .onoffswitch .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  156. right: 0;
  157. }
  158. /*********** Select 2 ***********/
  159. .select2-container {
  160. width: 100%;
  161. }
  162. .select2-container-multi .select2-choices .select2-search-field {
  163. height: 26px;
  164. }
  165. /*********** html select ********/
  166. .overflow-select {
  167. overflow: auto;
  168. }
  169. /*********** New Menu ***********/
  170. .sidebar-pf-left{
  171. background: #292e34;
  172. }
  173. .sidebar-pf .nav-pills > li a i, .sidebar-pf .nav-pills > li a span{
  174. color: #72767b;
  175. display: inline-block;
  176. margin-right: 10px;
  177. }
  178. .sidebar-pf .nav-pills > li > a{
  179. color: #dbdada;
  180. padding: 0px 20px 0 30px!important;
  181. line-height: 30px;
  182. border-left-width: 12px;
  183. border-left-style: solid;
  184. border-left-color: #292e34;
  185. margin-left: -6px;
  186. }
  187. .sidebar-pf .nav-pills > li > a:hover{
  188. background: #393f44;
  189. border-color:#292e34;
  190. border-left-color: #393f44;
  191. color: #fff;
  192. }
  193. .sidebar-pf .nav-pills > li > a:after{
  194. display: none!important;
  195. }
  196. .sidebar-pf .nav-pills > li.active > a {
  197. color: #fff;
  198. background: #393f44!important;
  199. border-bottom: 1px solid #000!important;
  200. border-top: 1px solid #000!important;
  201. border-left-color: #39a5dc!important;
  202. }
  203. .sidebar-pf .nav-pills > li.active a i, .sidebar-pf .nav-pills > li.active a span{
  204. color: #39a5dc;
  205. }
  206. /*********** Realm selector ***********/
  207. .realm-selector{
  208. color: #fff;
  209. margin: 0 -20px;
  210. position: relative;
  211. }
  212. .realm-dropmenu{
  213. display: none;
  214. cursor: pointer;
  215. position: absolute;
  216. top: 60px;
  217. left: 0;
  218. right: 0;
  219. z-index: 999;
  220. background: #fff;
  221. }
  222. .realm-selector:hover .realm-dropmenu{
  223. display: block;
  224. }
  225. .realm-add{
  226. padding: 10px;
  227. }
  228. .realm-selector h2{
  229. font-size: 16px;
  230. line-height: 60px;
  231. padding: 0 20px;
  232. margin: 0;
  233. border-bottom: 1px solid #d5d5d6;
  234. }
  235. .realm-selector h2 i{
  236. display: inline-block;
  237. float: right;
  238. line-height: 60px;
  239. }
  240. .realm-selector ul{
  241. padding-left: 0;
  242. margin: 0;
  243. list-style: none;
  244. max-height: 200px;
  245. overflow-y:auto;
  246. }
  247. .realm-selector ul li a{
  248. line-height: 60px;
  249. padding: 0 20px;
  250. border-bottom: 1px solid #d5d5d6;
  251. line-height: 39px;
  252. display: block;
  253. font-size: 14px;
  254. }
  255. /*********** Overwrites header defaults ***********/
  256. .navbar-pf{
  257. border-top: none!important;
  258. }
  259. .navbar-pf .navbar-brand {
  260. padding: 0;
  261. height: 56px;
  262. line-height: 56px;
  263. background-position: center center;
  264. background-image: url('../img/keyclok-logo.png');
  265. background-size: 148px 30px;
  266. background-repeat: no-repeat;
  267. width: 148px;
  268. }
  269. .navbar-pf .navbar-utility .dropdown-toggle {
  270. padding: 23px !important;
  271. }
  272. .clickable {
  273. cursor: pointer;
  274. }
  275. h1 i {
  276. color: #999999;
  277. font-size: 18px;
  278. margin-left: 10px;
  279. }
  280. /* Action cell */
  281. .kc-action-cell {
  282. background-color: #eeeeee;
  283. background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
  284. background-repeat: repeat-x;
  285. text-align: center;
  286. vertical-align: middle;
  287. overflow: hidden;
  288. text-overflow: ellipsis;
  289. white-space: nowrap;
  290. cursor:pointer;
  291. }
  292. .kc-action-cell:hover {
  293. background-color: #eeeeee;
  294. background-image: none;
  295. }
  296. .kc-sorter span {
  297. margin-left: 10px;
  298. }
  299. /* Time selector */
  300. .time-selector input {
  301. display: inline-block;
  302. width: 120px;
  303. padding-right: 0;
  304. margin-right: 0;
  305. }
  306. .time-selector select {
  307. display: inline-block;
  308. width: 80px;
  309. margin-left: 0;
  310. padding-left: 0;
  311. }
  312. .ace_editor {
  313. height: 600px;
  314. width: 100%;
  315. }
  316. .kc-button-input-file input {
  317. float: left;
  318. width: 73%;
  319. }
  320. .kc-button-input-file label {
  321. float: left;
  322. margin-left: 2%;
  323. width: 25%;
  324. }
  325. table.kc-authz-table-expanded {
  326. margin-top: 0px !important;
  327. }
  328. .no-gutter > [class*='col-'] {
  329. padding-right:0!important;
  330. padding-left:0!important;
  331. }
  332. .password-conceal {
  333. font-family: 'text-security-disc';
  334. font-size: 14px;
  335. }
  336. /* Deactivation styles for user-group membership tree models */
  337. div[tree-model] li .deactivate {
  338. color: #4a5053;
  339. opacity: 0.4;
  340. }
  341. div[tree-model] li .deactivate_selected {
  342. background-color: #dcdcdc;
  343. font-weight: bold;
  344. padding: 1px 5px;
  345. }
  346. /* search highlighting */
  347. div[tree-model] li .highlight {
  348. background-color: #aaddff;
  349. }
  350. /* Manage credentials */
  351. table.credentials-table {
  352. margin-top: 0;
  353. margin-bottom: 20px;
  354. }
  355. table.credentials-table td {
  356. vertical-align: middle !important;
  357. }
  358. table.credentials-table input[type='text'] {
  359. width: 100%;
  360. }
  361. td.credential-arrows-cell {
  362. width: 75px;
  363. }
  364. td.credential-label-cell {
  365. padding: 5px !important;
  366. }
  367. td.credential-action-cell {
  368. padding: 0px !important;
  369. }
  370. td.credential-action-cell div.kc-action-cell {
  371. width: 100%;
  372. height: 36px;
  373. line-height: 34px;
  374. }
  375. td.credential-action-cell.expanded div.kc-action-cell {
  376. border-bottom: 1px solid #d1d1d1;
  377. }
  378. table.credential-data-table td {
  379. word-break: break-all;
  380. }
  381. table.credential-data-table tr:first-child td {
  382. border-top: 0;
  383. }
  384. table.credential-data-table td:first-child {
  385. width: 150px;
  386. }
  387. table.credential-data-table td.key {
  388. text-align: right;
  389. font-weight: bold;
  390. }