styles.css 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  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. .select2-container-single {
  166. padding: 0;
  167. margin: 0;
  168. }
  169. .select2-container-single .form-group {
  170. width: 100%;
  171. margin: 0;
  172. }
  173. .select2-container-single .form-group .input-group {
  174. width: 100%;
  175. }
  176. /*********** html select ********/
  177. .overflow-select {
  178. overflow: auto;
  179. }
  180. /*********** New Menu ***********/
  181. .sidebar-pf-left{
  182. background: #292e34;
  183. }
  184. .sidebar-pf .nav-pills > li a i, .sidebar-pf .nav-pills > li a span{
  185. color: #72767b;
  186. display: inline-block;
  187. margin-right: 10px;
  188. }
  189. .sidebar-pf .nav-pills > li > a{
  190. color: #dbdada;
  191. padding: 0px 20px 0 30px!important;
  192. line-height: 30px;
  193. border-left-width: 12px;
  194. border-left-style: solid;
  195. border-left-color: #292e34;
  196. margin-left: -6px;
  197. }
  198. .sidebar-pf .nav-pills > li > a:hover{
  199. background: #393f44;
  200. border-color:#292e34;
  201. border-left-color: #393f44;
  202. color: #fff;
  203. }
  204. .sidebar-pf .nav-pills > li > a:after{
  205. display: none!important;
  206. }
  207. .sidebar-pf .nav-pills > li.active > a {
  208. color: #fff;
  209. background: #393f44!important;
  210. border-bottom: 1px solid #000!important;
  211. border-top: 1px solid #000!important;
  212. border-left-color: #39a5dc!important;
  213. }
  214. .sidebar-pf .nav-pills > li.active a i, .sidebar-pf .nav-pills > li.active a span{
  215. color: #39a5dc;
  216. }
  217. /*********** Realm selector ***********/
  218. .realm-selector{
  219. color: #fff;
  220. margin: 0 -20px;
  221. position: relative;
  222. }
  223. .realm-dropmenu{
  224. display: none;
  225. cursor: pointer;
  226. position: absolute;
  227. top: 60px;
  228. left: 0;
  229. right: 0;
  230. z-index: 999;
  231. background: #fff;
  232. }
  233. .realm-selector:hover .realm-dropmenu{
  234. display: block;
  235. }
  236. .realm-add{
  237. padding: 10px;
  238. }
  239. .realm-selector h2{
  240. font-size: 16px;
  241. line-height: 60px;
  242. padding: 0 20px;
  243. margin: 0;
  244. border-bottom: 1px solid #d5d5d6;
  245. }
  246. .realm-selector h2 i{
  247. display: inline-block;
  248. float: right;
  249. line-height: 60px;
  250. }
  251. .realm-selector ul{
  252. padding-left: 0;
  253. margin: 0;
  254. list-style: none;
  255. max-height: 200px;
  256. overflow-y:auto;
  257. }
  258. .realm-selector ul li a{
  259. line-height: 60px;
  260. padding: 0 20px;
  261. border-bottom: 1px solid #d5d5d6;
  262. line-height: 39px;
  263. display: block;
  264. font-size: 14px;
  265. }
  266. /*********** Overwrites header defaults ***********/
  267. .navbar-pf{
  268. border-top: none!important;
  269. }
  270. .navbar-pf .navbar-brand {
  271. padding: 0;
  272. height: 56px;
  273. line-height: 56px;
  274. background-position: center center;
  275. background-image: url('../img/keyclok-logo.png');
  276. background-size: 148px 30px;
  277. background-repeat: no-repeat;
  278. width: 148px;
  279. }
  280. .navbar-pf .navbar-utility .dropdown-toggle {
  281. padding: 23px !important;
  282. }
  283. .clickable {
  284. cursor: pointer;
  285. }
  286. h1 i {
  287. color: #999999;
  288. font-size: 18px;
  289. margin-left: 10px;
  290. }
  291. /* Action cell */
  292. .kc-action-cell {
  293. background-color: #eeeeee;
  294. background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
  295. background-repeat: repeat-x;
  296. text-align: center;
  297. vertical-align: middle;
  298. overflow: hidden;
  299. text-overflow: ellipsis;
  300. white-space: nowrap;
  301. cursor:pointer;
  302. }
  303. .kc-action-cell:hover {
  304. background-color: #eeeeee;
  305. background-image: none;
  306. }
  307. .kc-action-cell-disabled {
  308. background-color: #fafafa;
  309. color: #8b8d8f;
  310. background-image: none;
  311. cursor: not-allowed;
  312. }
  313. .kc-sorter span {
  314. margin-left: 10px;
  315. }
  316. /* Time selector */
  317. .time-selector input {
  318. display: inline-block;
  319. width: 120px;
  320. padding-right: 0;
  321. margin-right: 0;
  322. }
  323. .time-selector select {
  324. display: inline-block;
  325. width: 80px;
  326. margin-left: 0;
  327. padding-left: 0;
  328. }
  329. .ace_editor {
  330. height: 600px;
  331. width: 100%;
  332. }
  333. .kc-button-input-file input {
  334. float: left;
  335. width: 73%;
  336. }
  337. .kc-button-input-file label {
  338. float: left;
  339. margin-left: 2%;
  340. width: 25%;
  341. }
  342. table.kc-authz-table-expanded {
  343. margin-top: 0px !important;
  344. }
  345. .no-gutter > [class*='col-'] {
  346. padding-right:0!important;
  347. padding-left:0!important;
  348. }
  349. .password-conceal {
  350. font-family: 'text-security-disc';
  351. font-size: 14px;
  352. }
  353. /* Deactivation styles for user-group membership tree models */
  354. div[tree-model] li .deactivate {
  355. color: #4a5053;
  356. opacity: 0.4;
  357. }
  358. div[tree-model] li .deactivate_selected {
  359. background-color: #dcdcdc;
  360. font-weight: bold;
  361. padding: 1px 5px;
  362. }
  363. /* search highlighting */
  364. div[tree-model] li .highlight {
  365. background-color: #aaddff;
  366. }
  367. /* Manage credentials */
  368. table.credentials-table {
  369. margin-top: 0;
  370. margin-bottom: 20px;
  371. }
  372. table.credentials-table td {
  373. vertical-align: middle !important;
  374. }
  375. table.credentials-table input[type='text'] {
  376. width: 100%;
  377. }
  378. td.credential-arrows-cell {
  379. width: 75px;
  380. }
  381. td.credential-label-cell {
  382. padding: 5px !important;
  383. }
  384. td.credential-action-cell {
  385. padding: 0px !important;
  386. }
  387. td.credential-action-cell div.kc-action-cell {
  388. width: 100%;
  389. height: 36px;
  390. line-height: 34px;
  391. }
  392. td.credential-action-cell.expanded div.kc-action-cell {
  393. border-bottom: 1px solid #d1d1d1;
  394. }
  395. table.credential-data-table td {
  396. word-break: break-all;
  397. }
  398. table.credential-data-table tr:first-child td {
  399. border-top: 0;
  400. }
  401. table.credential-data-table td:first-child {
  402. width: 150px;
  403. }
  404. table.credential-data-table td.key {
  405. text-align: right;
  406. font-weight: bold;
  407. }