portal.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831
  1. /*******************/
  2. /* Global settings */
  3. /*******************/
  4. @media (max-width: 768px){
  5. body{
  6. padding-top: 60px;
  7. }
  8. }
  9. footer{
  10. margin: 5em 1em;
  11. }
  12. /* Navigation menu */
  13. .navbar-nav .dropdown-menu a .glyphicon,
  14. .user_infos .dropdown-menu a .glyphicon{
  15. margin-right: 15px;
  16. }
  17. /* Topbar */
  18. #topbar #navbar{
  19. overflow-y: auto;
  20. }
  21. #topbar .user_infos{
  22. text-decoration: none;
  23. }
  24. #topbar .user_photo{
  25. margin-right: 10px;
  26. }
  27. #topbar .user_photo img{
  28. margin-top: -4px;
  29. max-width: 100%;
  30. max-height: 100%;
  31. height: 25px;
  32. border-radius: 100%;
  33. }
  34. /* Sidebar */
  35. #sidebar{
  36. position: fixed;
  37. top: 0px;
  38. left: 0px;
  39. padding: 0px; /* Overriding BS */
  40. height: 100%;
  41. }
  42. #sidebar .user_card{
  43. padding: 30px 0px;
  44. background-color: #F2F2F2; /* TODO : Change this */
  45. text-align: center;
  46. }
  47. #sidebar .user_card .user_photo{
  48. margin-bottom: 10px;
  49. }
  50. #sidebar .user_card .user_photo img{
  51. border-radius: 100%;
  52. width: 70px;
  53. }
  54. #sidebar .user_card .user_infos{
  55. font-size: 1em;
  56. }
  57. #sidebar .user_card .user_options.dropdown-menu{
  58. width: 92%;
  59. left: 4%;
  60. }
  61. #sidebar .user_card .user_fullname{
  62. font-weight: 600;
  63. }
  64. #sidebar .menu{
  65. max-height: 59%;
  66. overflow-y: auto;
  67. }
  68. #sidebar .logo{
  69. position: absolute;
  70. bottom: 15px;
  71. width: 100%;
  72. text-align: center;
  73. }
  74. /* Overlays*/
  75. .global_overlay{
  76. z-index: 9999;
  77. display: none;
  78. position: fixed;
  79. top: 0px;
  80. left: 0px;
  81. width: 100%;
  82. height: 100%;
  83. background-color: black;
  84. opacity: 0.5;
  85. }
  86. #page_overlay .overlay_content{
  87. margin-top: 20em;
  88. width: 100%;
  89. color: white;
  90. }
  91. .overlay_content{
  92. text-align: center;
  93. }
  94. .content_loader .icon{
  95. margin-bottom: 0.3em;
  96. /*width: 52px;*/
  97. height: 38px; /* 50px; *//* Hack to make loader circle perfectly */
  98. font-size: 3em; /* 4em; */
  99. animation: spin 1.2s linear infinite;
  100. -webkit-animation: spin 1.2s linear infinite;
  101. -moz-animation: spin 1.2s linear infinite;
  102. -ms-animation: spin 1.2s linear infinite;
  103. }
  104. .content_loader .message{
  105. font-size: 1.5em; /* 2em; */
  106. }
  107. .datatables_overlay{
  108. padding: 5% 0px !important;
  109. background-color: white;
  110. }
  111. /******************/
  112. /* Global classes */
  113. /******************/
  114. /*@media (min-width: 768px) {
  115. .row-eq-height-sm {
  116. display: -webkit-box;
  117. display: -webkit-flex;
  118. display: -ms-flexbox;
  119. display: flex;
  120. }
  121. }
  122. @media (min-width: 992px) {
  123. .row-eq-height-md {
  124. display: -webkit-box;
  125. display: -webkit-flex;
  126. display: -ms-flexbox;
  127. display: flex;
  128. }
  129. }
  130. @media (min-width: 1200px) {
  131. .row-eq-height-lg {
  132. display: -webkit-box;
  133. display: -webkit-flex;
  134. display: -ms-flexbox;
  135. display: flex;
  136. }
  137. }*/
  138. .vertical-center {
  139. /* Make it a flex container */
  140. display: -webkit-box;
  141. display: -moz-box;
  142. display: -ms-flexbox;
  143. display: -webkit-flex;
  144. display: flex;
  145. /* Align the bootstrap's container vertically */
  146. -webkit-box-align : center;
  147. -webkit-align-items : center;
  148. -moz-box-align : center;
  149. -ms-flex-align : center;
  150. align-items : center;
  151. /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
  152. hence the bootstrap's container won't be aligned to the center anymore.
  153. Therefore, we should use the following declarations to get it centered again */
  154. -webkit-box-pack : center;
  155. -moz-box-pack : center;
  156. -ms-flex-pack : center;
  157. -webkit-justify-content : center;
  158. justify-content : center;
  159. }
  160. /*********************/
  161. /* Global animations */
  162. /*********************/
  163. /* Spin */
  164. @keyframes spin{
  165. 100% {
  166. transform: rotate(360deg);
  167. }
  168. }
  169. @-webkit-keyframes spin{
  170. 100% {
  171. -webkit-transform: rotate(360deg);
  172. }
  173. }
  174. @-moz-keyframes spin{
  175. 100% {
  176. -moz-transform: rotate(360deg);
  177. }
  178. }
  179. @-ms-keyframes spin{
  180. 100% {
  181. -ms-transform: rotate(360deg);
  182. }
  183. }
  184. /***************/
  185. /* BS override */
  186. /***************/
  187. @font-face {
  188. font-family: 'Glyphicons Halflings';
  189. src: url('../lib/bootstrap/fonts/glyphicons-halflings-regular.eot');
  190. src: url('../lib/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../lib/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../lib/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../lib/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../lib/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  191. }
  192. label{
  193. font-weight: bold;
  194. }
  195. /*********************/
  196. /* BS theme override */
  197. /*********************/
  198. .pagination{
  199. margin: 14px 0px;
  200. }
  201. .list-group.tree{
  202. margin-top: 11px;
  203. margin-bottom: -11px;
  204. }
  205. .list-group-item{
  206. padding-right: 0px; /* To align all actions on the right without indent */
  207. }
  208. .tooltip-inner{
  209. max-width: 400px;
  210. padding: 15px;
  211. }
  212. .nav > li.active > a{
  213. font-weight: 600;
  214. }
  215. /* Custom "glyphicons" */
  216. .glyphicon-ext-hierarchy:before {
  217. content: url('../img/icons/hierarchy-white-13px.png');
  218. }
  219. /**********************/
  220. /* BS plugin override */
  221. /**********************/
  222. /* Datatables */
  223. .table-striped > tbody > tr:hover {
  224. background-color: #fdf5d0;
  225. }
  226. /******************/
  227. /* Modal settings */
  228. /******************/
  229. .modal-content .content_loader{
  230. margin: 7em 0em;
  231. text-align: center;
  232. }
  233. @media (min-width: 992px){
  234. .modal-lg {
  235. width: 80%;
  236. max-width: 1200px;
  237. }
  238. }
  239. /**************************/
  240. /* MagnificPopup settings */
  241. /**************************/
  242. .mfp-bg{
  243. z-index: 1200;
  244. }
  245. .mfp-wrap{
  246. z-index: 1210;
  247. }
  248. /********************/
  249. /* Typeahed setting */
  250. /********************/
  251. .twitter-typeahead .tt-menu{
  252. max-height: 200px;
  253. overflow-y: auto;
  254. }
  255. @media (min-width: 768px){
  256. .twitter-typeahead .tt-menu{
  257. max-height: 300px;
  258. }
  259. }
  260. .twitter-typeahead .tt-dataset > .content_loader{
  261. margin: 10px 0px;
  262. text-align: center;
  263. font-size: 0.6em;
  264. }
  265. .twitter-typeahead .tt-dataset > .content_loader .icon{
  266. height: 25px;
  267. }
  268. .twitter-typeahead .tt-dataset .no_result{
  269. text-align: center;
  270. font-style: italic;
  271. }
  272. /*****************/
  273. /* Home settings */
  274. /*****************/
  275. .home #main-wrapper{
  276. padding-top: 15px;
  277. }
  278. .home .tile{
  279. margin-bottom: 8px;
  280. min-height: 4em;
  281. background-color: #FFFFFF;
  282. background-image: none;
  283. border: 1px solid #8A8A8A;
  284. border-radius: 0px;
  285. text-align: center;
  286. text-decoration: none;
  287. white-space: normal;
  288. }
  289. .home .tile .tile_decoration{
  290. position: absolute;
  291. top: 3px;
  292. left: 21px;
  293. }
  294. .home .tile .tile_decoration > img{
  295. width: 45px;
  296. max-height: 45px;
  297. }
  298. .home .tile .tile_title{
  299. font-weight: bold;
  300. color: #333;
  301. }
  302. .home .tile .tile_description{
  303. display: none;
  304. color: #555555;
  305. }
  306. @media (min-width: 768px) {
  307. .home .tile{
  308. margin-bottom: 30px;
  309. min-height: 10em;
  310. }
  311. .home .tile .tile_decoration{
  312. position: absolute;
  313. top: -30px;
  314. left: 0px;
  315. width: 100%;
  316. }
  317. .home .tile .tile_decoration > img{
  318. width: 55px;
  319. max-height: 55px;
  320. }
  321. .home .tile .tile_title{
  322. font-size: 1.0em;
  323. }
  324. .home .tile .tile_description{
  325. display: block;
  326. margin: 15px 20px 0px 20px;
  327. text-align: justify;
  328. }
  329. }
  330. @media (min-width: 992px) {
  331. .home .tile{
  332. min-height: 15em;
  333. }
  334. .home .tile .tile_decoration{
  335. top: -35px;
  336. }
  337. .home .tile .tile_decoration > img{
  338. width: 85px;
  339. max-height: 85px;
  340. }
  341. .home .tile .tile_title{
  342. font-size: 1.4em;
  343. }
  344. }
  345. /********************/
  346. /* Modules settings */
  347. /********************/
  348. #main-header-title{
  349. text-align: center;
  350. }
  351. @media (min-width: 768px) {
  352. #main-header-title{
  353. min-height: 6em;
  354. text-align: left;
  355. }
  356. }
  357. #main-header-actions > .row{
  358. margin-top: 20px;
  359. }
  360. @media(max-width: 768px){
  361. #main-header-actions{
  362. margin-bottom: 20px;
  363. }
  364. }
  365. .dataTables_wrapper{
  366. padding: 10px 10px;
  367. }
  368. #brick_content_toolbar{
  369. margin: 10px 0px 6px 0px;
  370. }
  371. #brick_content_toolbar > div label{
  372. font-weight: normal;
  373. white-space: nowrap;
  374. text-align: left;
  375. }
  376. #brick_content_toolbar > div label input{
  377. margin-left: 0.5em;
  378. display: inline-block;
  379. width: 130px;
  380. }
  381. /***********************/
  382. /* Brick communication */
  383. /***********************/
  384. /* Home tile */
  385. .home .tile.tile_communication{
  386. padding: 20px;
  387. background-color: #EDEDED;
  388. border: none;
  389. font-weight: initial;
  390. }
  391. .home .tile_communication .carousel{
  392. margin-bottom: 0px;
  393. width: 100%;
  394. height: 200px;
  395. }
  396. /**********************/
  397. /* Brick user profile */
  398. /**********************/
  399. .home .userprofile-brick{
  400. background-color: #E8E7E7;
  401. }
  402. /****************/
  403. /* Brick browse */
  404. /****************/
  405. /* - Tree mode */
  406. /****************/
  407. #brick_content_tree{
  408. position: relative;
  409. }
  410. .panel > .list-group:last-child .list-group-item:last-child,
  411. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child{
  412. margin-bottom: 1px;
  413. }
  414. .list-group-item > .list-group-item-actions{
  415. /*display: none; Displaying actions only when hovering was not unanimous in the team */
  416. position: absolute;
  417. top: 10px;
  418. right: 10px;
  419. }
  420. .list-group-item:hover > .list-group-item-actions{
  421. display: block;
  422. }
  423. .list-group-item .list-group-item-actions a:not(:first-child){
  424. margin-left: 10px;
  425. }
  426. .list-group-item .list-group-item-text{
  427. margin-left: 5px;
  428. font-size: 1em;
  429. line-height: 1em;
  430. }
  431. .list-group-item .keep-spinning{
  432. animation: spin 1s linear infinite;
  433. -webkit-animation: spin 1s linear infinite;
  434. -moz-animation: spin 1s linear infinite;
  435. -ms-animation: spin 1s linear infinite;
  436. }
  437. /* Secondary actions */
  438. table .group-actions{
  439. position: relative;
  440. }
  441. .list-group-item-actions a.glyphicon-menu-hamburger,
  442. table .group-actions a.glyphicon-menu-hamburger{
  443. cursor: pointer;
  444. text-decoration: none;
  445. }
  446. .list-group-item-actions .item-action-wrapper,
  447. table .group-actions .item-action-wrapper
  448. {
  449. display: none;
  450. position: absolute;
  451. z-index: 5;
  452. bottom: 5px;
  453. right: 0px;
  454. -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  455. -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  456. box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  457. }
  458. .list-group-item-actions .item-action-wrapper .glyphicon,
  459. table .group-actions .item-action-wrapper .glyphicon{
  460. margin-right: 0.6em;
  461. }
  462. .list-group-item-actions .item-action-wrapper.collapse.in,
  463. table .group-actions .item-action-wrapper.collapse.in{
  464. display: block;
  465. }
  466. .list-group-item-actions .item-action-wrapper .panel-body > p,
  467. table .group-actions .item-action-wrapper .panel-body > p{
  468. white-space: nowrap;
  469. }
  470. .list-group-item-actions .item-action-wrapper .panel-body > p:last-child,
  471. table .group-actions .item-action-wrapper .panel-body > p:last-child{
  472. margin-bottom: 0px;
  473. }
  474. #brick_content_empty{
  475. display: none;
  476. padding: 40px;
  477. font-size: 1.3em;
  478. font-style: italic;
  479. }
  480. /* Loader */
  481. #brick_tree_overlay{
  482. /*z-index: 10;*/
  483. display: none;
  484. padding: 8% 0px;
  485. /*position: absolute;
  486. top: 0px;
  487. left: 0px;
  488. width: 100%;
  489. height: 100%;
  490. min-height: 130px;*/
  491. /*background-color: black;*/
  492. border-radius: 0px 0px 4px 4px;
  493. /*opacity: 0.5;
  494. color: white;*/
  495. font-size: 1em;
  496. }
  497. /****************/
  498. /* - List mode */
  499. /****************/
  500. /*********/
  501. /* Forms */
  502. /*********/
  503. .form_fields textarea{
  504. height: 160px;
  505. }
  506. .form_field .form_mandatory .control-label:after{
  507. content: "\002a";
  508. position: relative;
  509. left: 3px;
  510. color: red; /* TODO : SASS this */
  511. font-size: 0.9em;
  512. }
  513. /* Subform field */
  514. .subform_field > fieldset{
  515. margin: inherit;
  516. margin-bottom: 15px; /* TODO : SASS this from .form-group */
  517. padding: 10px 15px;
  518. border: 1px solid #dddddd; /* TODO : SASS this */
  519. border-radius: 4px; /* TODO : SASS this */
  520. }
  521. .subform_field > fieldset > legend{
  522. margin: 0px 0px;
  523. padding: 0px 7px;
  524. width: inherit;
  525. border: none;
  526. font-size: 1em;
  527. font-weight: bold;
  528. color: #777777; /* TODO : SASS this */
  529. }
  530. /* CaseLog field */
  531. .caselog_field_entry{
  532. border: 1px solid #dddddd;
  533. border-top: none;
  534. }
  535. .caselog_field_entry_header{
  536. padding: 6px;
  537. font-size: 1em;
  538. border-bottom: 1px solid #FFFFFF;
  539. background-color: #F2F2F2;
  540. }
  541. .caselog_field_entry_button{
  542. display: block;
  543. width: 15px;
  544. height: 15px;
  545. text-align: center;
  546. line-height: 15px;
  547. font-size: 16px;
  548. border: 1px solid #a6a6a6;
  549. border-bottom-color: #979797;
  550. }
  551. .caselog_field_entry_button:hover{
  552. background-color: #cccccc;
  553. }
  554. .caselog_field_entry_button:before{
  555. content: "▴";
  556. }
  557. .caselog_field_entry_button.collapsed:before{
  558. content: "▾";
  559. }
  560. .caselog_field_entry_content{
  561. margin: 10px;
  562. overflow-x: auto;
  563. }
  564. /* FileUpload */
  565. .fileupload_field_content{
  566. padding: 8px 23px;
  567. border: 1px solid #DDDDDD; /* TODO : SASS this */
  568. background-color: #F9F9F9; /* TODO : SASS this*/
  569. }
  570. .fileupload_field_content > div{
  571. margin-bottom: 15px;
  572. }
  573. .attachments_container .attachment {
  574. height: 95px;
  575. overflow-x: hidden;
  576. text-align: center;
  577. }
  578. .attachments_container .attachment:hover {
  579. background-color: #e0e0e0;
  580. }
  581. .attachments_container .attachment .attachment_name{
  582. overflow-x: hidden;
  583. text-overflow: ellipsis;
  584. white-space: nowrap;
  585. }
  586. .attachments_container .attachment .btn{
  587. margin-top: 3px;
  588. }
  589. .upload_container input{
  590. display: inline;
  591. }
  592. .upload_container .loader{
  593. visibility: hidden;
  594. margin-left: 7px;
  595. font-size: 1.2em;
  596. animation: spin 1.0s linear infinite;
  597. -webkit-animation: spin 1.0s linear infinite;
  598. -moz-animation: spin 1.0s linear infinite;
  599. -ms-animation: spin 1.0s linear infinite;
  600. }
  601. #drag_overlay{
  602. display: block;
  603. top: inherit;
  604. bottom: 0px;
  605. height: 0px;
  606. }
  607. #drag_overlay .overlay_content{
  608. margin-top: 5em;
  609. width: 100%;
  610. color: white;
  611. }
  612. #drag_overlay .overlay_content .icon{
  613. font-size: 3em;
  614. }
  615. #drag_overlay .overlay_content .message{
  616. font-size: 1.5em;
  617. }
  618. /* Attachments drag & drop zone, only for none mobile devices */
  619. @media (min-width: 768px){
  620. #drag_overlay.drag_in{
  621. animation: show-drop-zone 0.3s ease-out forwards;
  622. -webkit-animation: show-drop-zone 0.3s ease-out forwards;
  623. -moz-animation: show-drop-zone 0.3s ease-out forwards;
  624. -ms-animation: show-drop-zone 0.3s ease-out forwards;
  625. }
  626. #drag_overlay.drag_out{
  627. animation: hide-drop-zone 0.3s ease-out forwards;
  628. -webkit-animation: hide-drop-zone 0.3s ease-out forwards;
  629. -moz-animation: hide-drop-zone 0.3s ease-out forwards;
  630. -ms-animation: hide-drop-zone 0.3s ease-out forwards;
  631. }
  632. @keyframes show-drop-zone{
  633. 100% {
  634. height: 20%;
  635. }
  636. }
  637. @-webkit-keyframes show-drop-zone{
  638. 100% {
  639. height: 20%;
  640. }
  641. }
  642. @-moz-keyframes show-drop-zone{
  643. 100% {
  644. height: 20%;
  645. }
  646. }
  647. @-ms-keyframes show-drop-zone{
  648. 100% {
  649. height: 20%;
  650. }
  651. }
  652. @keyframes hide-drop-zone{
  653. 0% {
  654. height: 20%;
  655. }
  656. 100% {
  657. height: 0%;
  658. }
  659. }
  660. @-webkit-keyframes hide-drop-zone{
  661. 0% {
  662. height: 20%;
  663. }
  664. 100% {
  665. height: 0%;
  666. }
  667. }
  668. @-moz-keyframes hide-drop-zone{
  669. 0% {
  670. height: 20%;
  671. }
  672. 100% {
  673. height: 0%;
  674. }
  675. }
  676. @-ms-keyframes hide-drop-zone{
  677. 0% {
  678. height: 20%;
  679. }
  680. 100% {
  681. height: 0%;
  682. }
  683. }
  684. }
  685. .form_field .form-control-static img{
  686. max-width: 100% !important;
  687. height: initial !important;
  688. }
  689. .form_buttons{
  690. padding-top: 20px;
  691. text-align: center;
  692. }
  693. .form_buttons .form_btn_transitions{
  694. margin-bottom: 20px;
  695. }
  696. .form_btn_regular.sticky{
  697. display: none;
  698. }
  699. @media (min-width: 768px){
  700. .form_buttons .form_btn_transitions{
  701. float: left !important;
  702. }
  703. .form_buttons .form_btn_regular{
  704. text-align: right;
  705. }
  706. .form_buttons .form_btn_regular btn{
  707. width: inherit;
  708. }
  709. /* Making regular button sticky */
  710. .form_btn_regular.sticky{
  711. display: block;
  712. position: fixed;
  713. bottom: 0px;
  714. padding: 15px;
  715. background-color: #FFF; /* TODO : SASS this to panel bg */
  716. border: 1px solid #DDD; /* TODO : SASS this to panel border */
  717. border-radius: 4px; /* TODO : SASS this to panel border */
  718. transition: bottom 0.3s;
  719. }
  720. .form_btn_regular.sticky.closed{
  721. bottom: -80px;
  722. }
  723. /* - For regular layout */
  724. #main-content .form_btn_regular.sticky{
  725. right: 15px; /* TODO : SASS this to col-xs-12 padding */
  726. }
  727. /* - For modal layout */
  728. .modal.in .form_btn_regular.sticky{
  729. margin-left: 61%;
  730. }
  731. }
  732. @media (min-width: 992px) {
  733. /* - For modal layout */
  734. .modal.in .form_btn_regular.sticky{
  735. margin-left: 70%;
  736. }
  737. }
  738. @media (min-width: 1200px) {
  739. /* - For modal layout */
  740. .modal.in .form_btn_regular.sticky{
  741. margin-left: 73%;
  742. }
  743. }
  744. /* CKEditor : Adding BS error feedback */
  745. .form_field div.cke{
  746. border: 1px solid #dddddd; /* TODO : SASS this */
  747. }
  748. .form_field.has-error div.cke{
  749. border: 1px solid #D9230F; /* TODO : SASS this */
  750. border-radius: 3px; /* TODO : SASS this */
  751. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  752. }
  753. /* CKEditor : Styling notifications based on BS alerts */
  754. .cke_notification{
  755. position: relative;
  756. padding: 15px;
  757. margin-bottom: 18px;
  758. border: 1px solid transparent;
  759. border-radius: 4px;
  760. background-color: #FFFFFF
  761. }
  762. .cke_notification_close{
  763. position: absolute;
  764. top: 2px;
  765. right: 5px;
  766. }
  767. .cke_notification_message{
  768. margin-bottom: 0px;
  769. line-height: 1em;
  770. font-size: 1em;
  771. }
  772. .cke_notification_success{ /* TODO : SASS this */
  773. display: none;
  774. background-color: #dff0d8;
  775. border-color: #d6e9c6;
  776. color: #468847;
  777. }
  778. .cke_notification_warning{ /* TODO : SASS this */
  779. background-color: #fcf8e3;
  780. border-color: #fbeed5;
  781. color: #c09853;
  782. }
  783. /* DataTables : Fit the table in the form */
  784. .form_linkedset_wrapper .dataTables_wrapper{
  785. margin-bottom: 5px;
  786. padding: 0px;
  787. }
  788. /* DataTables : Selection inputs */
  789. .dataTable.table td span.row_input{
  790. display: inline-block;
  791. margin-right: 5px;
  792. vertical-align: middle;
  793. }