12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- @import '../fonts/awesome/awesome-font.css';
- @import '../fonts/iransans/iransans-font.css';
- @import '../app';
- // This files are essential for the theme
- //@import './core/customize-bootstrap';
- // BASICS
- // This styles are essential for theme
- @import './core/content';
- // Component
- @import './core/components';
- // Pages
- // This styles are optional based on your preferance
- @import './core/pages';
- // Table style color border
- table.table-bordered{
- thead{
- tr{
- th{
- background-color: #dcdcdc;
- border:1px solid #f1f2f3;
- }
- }
- }
- tbody{
- tr{
- td{
- border:1px solid #f1f2f3;
- }
- }
- }
- }
- /* Collapse between + , - in header card */
- #accordion {
- .accordion-head {
- .collapsed {
- i {
- &:before{
- content: "\f067";
- }
- }
- }
- }
- }
- /* Change icon up/down when collapse search */
- #search-collapse.accordion {
- .card-header {
- &:before {
- /* Down symbol*/
- font-family: 'FontAwesome';
- content: "\f0d7";
- float: left;
- }
- &.collapsed {
- &:before {
- /* Up symbol */
- content: "\f0d8";
- }
- }
- }
- }
- // Cursor pointer class
- .cursor-pointer {
- cursor: pointer;
- }
|