panel.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @import '../fonts/awesome/awesome-font.css';
  2. @import '../fonts/iransans/iransans-font.css';
  3. @import '../app';
  4. @import '~select2/dist/css/select2.min.css';
  5. // This files are essential for the theme
  6. //@import './core/customize-bootstrap';
  7. // BASICS
  8. // This styles are essential for theme
  9. @import './core/content';
  10. // Component
  11. @import './core/components';
  12. // Pages
  13. // This styles are optional based on your preferance
  14. @import './core/pages';
  15. // Table style color border
  16. table.table-bordered{
  17. thead{
  18. tr{
  19. th{
  20. background-color: #dcdcdc;
  21. border:1px solid #f1f2f3;
  22. }
  23. }
  24. }
  25. tbody{
  26. tr{
  27. td{
  28. border:1px solid #f1f2f3;
  29. }
  30. }
  31. }
  32. }
  33. /* Collapse between + , - in header card */
  34. #accordion {
  35. .accordion-head {
  36. .collapsed {
  37. i {
  38. &:before{
  39. content: "\f067";
  40. }
  41. }
  42. }
  43. }
  44. }
  45. /* Change icon up/down when collapse search */
  46. #search-collapse.accordion {
  47. .card-header {
  48. &:before {
  49. /* Down symbol*/
  50. font-family: 'FontAwesome';
  51. content: "\f0d7";
  52. float: left;
  53. }
  54. &.collapsed {
  55. &:before {
  56. /* Up symbol */
  57. content: "\f0d8";
  58. }
  59. }
  60. }
  61. }
  62. // Cursor pointer class
  63. .cursor-pointer {
  64. cursor: pointer;
  65. }