boxes.less 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. /*
  2. * Component: Box
  3. * --------------
  4. */
  5. .box {
  6. position: relative;
  7. .border-radius(@box-border-radius);
  8. background: #ffffff;
  9. border-top: 3px solid @box-default-border-top-color;
  10. margin-bottom: 20px;
  11. width: 100%;
  12. box-shadow: @box-boxshadow;
  13. // Box color variations
  14. &.box-primary {
  15. border-top-color: @light-blue;
  16. }
  17. &.box-info {
  18. border-top-color: @aqua;
  19. }
  20. &.box-danger {
  21. border-top-color: @red;
  22. }
  23. &.box-warning {
  24. border-top-color: @yellow;
  25. }
  26. &.box-success {
  27. border-top-color: @green;
  28. }
  29. &.box-default {
  30. border-top-color: @gray-lte;
  31. }
  32. // collapsed mode
  33. &.collapsed-box {
  34. .box-body,
  35. .box-footer {
  36. display: none;
  37. }
  38. }
  39. .nav-stacked {
  40. > li {
  41. border-bottom: 1px solid @box-border-color;
  42. margin: 0;
  43. &:last-of-type {
  44. border-bottom: none;
  45. }
  46. }
  47. }
  48. // fixed height to 300px
  49. &.height-control {
  50. .box-body {
  51. max-height: 300px;
  52. overflow: auto;
  53. }
  54. }
  55. .border-right {
  56. border-right: 1px solid @box-border-color;
  57. }
  58. .border-left {
  59. border-left: 1px solid @box-border-color;
  60. }
  61. //SOLID BOX
  62. //---------
  63. //use this class to get a colored header and borders
  64. &.box-solid {
  65. border-top: 0;
  66. > .box-header {
  67. .btn.btn-default {
  68. background: transparent;
  69. }
  70. .btn,
  71. a {
  72. &:hover {
  73. background: rgba(0, 0, 0, 0.1);
  74. }
  75. }
  76. }
  77. // Box color variations
  78. &.box-default {
  79. .box-solid-variant(@gray-lte, #444);
  80. }
  81. &.box-primary {
  82. .box-solid-variant(@light-blue);
  83. }
  84. &.box-info {
  85. .box-solid-variant(@aqua);
  86. }
  87. &.box-danger {
  88. .box-solid-variant(@red);
  89. }
  90. &.box-warning {
  91. .box-solid-variant(@yellow);
  92. }
  93. &.box-success {
  94. .box-solid-variant(@green);
  95. }
  96. > .box-header > .box-tools .btn {
  97. border: 0;
  98. box-shadow: none;
  99. }
  100. // Fix font color for tiles
  101. &[class*='bg'] {
  102. > .box-header {
  103. color: #fff;
  104. }
  105. }
  106. }
  107. //BOX GROUP
  108. .box-group {
  109. > .box {
  110. margin-bottom: 5px;
  111. }
  112. }
  113. // jQuery Knob in a box
  114. .knob-label {
  115. text-align: center;
  116. color: #333;
  117. font-weight: 100;
  118. font-size: 12px;
  119. margin-bottom: 0.3em;
  120. }
  121. }
  122. .box,
  123. .overlay-wrapper {
  124. // Box overlay for LOADING STATE effect
  125. > .overlay,
  126. > .loading-img {
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. width: 100%;
  131. height: 100%;
  132. }
  133. .overlay {
  134. z-index: 50;
  135. background: rgba(255, 255, 255, 0.7);
  136. .border-radius(@box-border-radius);
  137. > .fa {
  138. position: absolute;
  139. top: 50%;
  140. left: 50%;
  141. margin-left: -15px;
  142. margin-top: -15px;
  143. color: #000;
  144. font-size: 30px;
  145. }
  146. }
  147. .overlay.dark {
  148. background: rgba(0, 0, 0, 0.5);
  149. }
  150. }
  151. //Add clearfix to header, body and footer
  152. .box-header,
  153. .box-body,
  154. .box-footer {
  155. .clearfix();
  156. }
  157. //Box header
  158. .box-header {
  159. color: #444;
  160. display: block;
  161. padding: @box-padding;
  162. position: relative;
  163. //Add bottom border
  164. &.with-border {
  165. border-bottom: 1px solid @box-border-color;
  166. .collapsed-box & {
  167. border-bottom: none;
  168. }
  169. }
  170. //Icons and box title
  171. > .fa,
  172. > .glyphicon,
  173. > .ion,
  174. .box-title {
  175. display: inline-block;
  176. font-size: 18px;
  177. margin: 0;
  178. line-height: 1;
  179. }
  180. > .fa,
  181. > .glyphicon,
  182. > .ion {
  183. margin-right: 5px;
  184. }
  185. > .box-tools {
  186. float: right;
  187. margin-top: -5px;
  188. margin-bottom: -5px;
  189. [data-toggle="tooltip"] {
  190. position: relative;
  191. }
  192. &.pull-right {
  193. .dropdown-menu {
  194. right: 0;
  195. left: auto;
  196. }
  197. }
  198. .dropdown-menu > li > a {
  199. color: #444!important;
  200. }
  201. }
  202. }
  203. //Box Tools Buttons
  204. .btn-box-tool {
  205. padding: 5px;
  206. font-size: 12px;
  207. background: transparent;
  208. color: darken(@box-default-border-top-color, 20%);
  209. .open &,
  210. &:hover {
  211. color: darken(@box-default-border-top-color, 40%);
  212. }
  213. &.btn:active {
  214. box-shadow: none;
  215. }
  216. }
  217. //Box Body
  218. .box-body {
  219. .border-radius(0; 0; @box-border-radius; @box-border-radius);
  220. padding: @box-padding;
  221. .no-header & {
  222. .border-top-radius(@box-border-radius);
  223. }
  224. // Tables within the box body
  225. > .table {
  226. margin-bottom: 0;
  227. }
  228. // Calendar within the box body
  229. .fc {
  230. margin-top: 5px;
  231. }
  232. .full-width-chart {
  233. margin: -19px;
  234. }
  235. &.no-padding .full-width-chart {
  236. margin: -9px;
  237. }
  238. .box-pane {
  239. .border-radius(0; 0; @box-border-radius; 0);
  240. }
  241. .box-pane-right {
  242. .border-radius(0; 0; 0; @box-border-radius);
  243. }
  244. }
  245. //Box footer
  246. .box-footer {
  247. .border-radius(0; 0; @box-border-radius; @box-border-radius);
  248. border-top: 1px solid @box-border-color;
  249. padding: @box-padding;
  250. background-color: @box-footer-bg;
  251. }
  252. .chart-legend {
  253. &:extend(.list-unstyled);
  254. margin: 10px 0;
  255. > li {
  256. @media (max-width: @screen-sm-max) {
  257. float: left;
  258. margin-right: 10px;
  259. }
  260. }
  261. }
  262. //Comment Box
  263. .box-comments {
  264. background: #f7f7f7;
  265. .box-comment {
  266. .clearfix();
  267. padding: 8px 0;
  268. border-bottom: 1px solid #eee;
  269. &:last-of-type {
  270. border-bottom: 0;
  271. }
  272. &:first-of-type {
  273. padding-top: 0;
  274. }
  275. img {
  276. &:extend(.img-sm);
  277. float: left;
  278. }
  279. }
  280. .comment-text {
  281. margin-left: 40px;
  282. color: #555;
  283. }
  284. .username {
  285. color: #444;
  286. display: block;
  287. font-weight: 600;
  288. }
  289. .text-muted {
  290. font-weight: 400;
  291. font-size: 12px;
  292. }
  293. }
  294. //Widgets
  295. //-----------
  296. /* Widget: TODO LIST */
  297. .todo-list {
  298. margin: 0;
  299. padding: 0;
  300. list-style: none;
  301. overflow: auto;
  302. // Todo list element
  303. > li {
  304. .border-radius(2px);
  305. padding: 10px;
  306. background: #f4f4f4;
  307. margin-bottom: 2px;
  308. border-left: 2px solid #e6e7e8;
  309. color: #444;
  310. &:last-of-type {
  311. margin-bottom: 0;
  312. }
  313. > input[type='checkbox'] {
  314. margin: 0 10px 0 5px;
  315. }
  316. .text {
  317. display: inline-block;
  318. margin-left: 5px;
  319. font-weight: 600;
  320. }
  321. // Time labels
  322. .label {
  323. margin-left: 10px;
  324. font-size: 9px;
  325. }
  326. // Tools and options box
  327. .tools {
  328. display: none;
  329. float: right;
  330. color: @red;
  331. // icons
  332. > .fa, > .glyphicon, > .ion {
  333. margin-right: 5px;
  334. cursor: pointer;
  335. }
  336. }
  337. &:hover .tools {
  338. display: inline-block;
  339. }
  340. &.done {
  341. color: #999;
  342. .text {
  343. text-decoration: line-through;
  344. font-weight: 500;
  345. }
  346. .label {
  347. background: @gray-lte !important;
  348. }
  349. }
  350. }
  351. // Color varaity
  352. .danger {
  353. border-left-color: @red;
  354. }
  355. .warning {
  356. border-left-color: @yellow;
  357. }
  358. .info {
  359. border-left-color: @aqua;
  360. }
  361. .success {
  362. border-left-color: @green;
  363. }
  364. .primary {
  365. border-left-color: @light-blue;
  366. }
  367. .handle {
  368. display: inline-block;
  369. cursor: move;
  370. margin: 0 5px;
  371. }
  372. }
  373. // END TODO WIDGET
  374. /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
  375. .chat {
  376. padding: 5px 20px 5px 10px;
  377. .item {
  378. .clearfix();
  379. margin-bottom: 10px;
  380. // The image
  381. > img {
  382. width: 40px;
  383. height: 40px;
  384. border: 2px solid transparent;
  385. .border-radius(50%);
  386. }
  387. > .online {
  388. border: 2px solid @green;
  389. }
  390. > .offline {
  391. border: 2px solid @red;
  392. }
  393. // The message body
  394. > .message {
  395. margin-left: 55px;
  396. margin-top: -40px;
  397. > .name {
  398. display: block;
  399. font-weight: 600;
  400. }
  401. }
  402. // The attachment
  403. > .attachment {
  404. .border-radius(@attachment-border-radius);
  405. background: #f4f4f4;
  406. margin-left: 65px;
  407. margin-right: 15px;
  408. padding: 10px;
  409. > h4 {
  410. margin: 0 0 5px 0;
  411. font-weight: 600;
  412. font-size: 14px;
  413. }
  414. > p, > .filename {
  415. font-weight: 600;
  416. font-size: 13px;
  417. font-style: italic;
  418. margin: 0;
  419. }
  420. .clearfix();
  421. }
  422. }
  423. }
  424. //END CHAT WIDGET
  425. //Input in box
  426. .box-input {
  427. max-width: 200px;
  428. }
  429. //A fix for panels body text color when placed within
  430. // a modal
  431. .modal {
  432. .panel-body {
  433. color: #444;
  434. }
  435. }