_responsive-horizontal.scss 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. /* Responsive */
  2. @media screen and (max-width: 576px) {
  3. .row-card-no-pd {
  4. [class*=col-] {
  5. .card {
  6. &:before {
  7. width: calc(100% - 30px) !important;
  8. right: 15px !important;
  9. height: 1px !important;
  10. }
  11. }
  12. &:first-child {
  13. .card {
  14. &:before {
  15. display: none !important;
  16. }
  17. }
  18. }
  19. }
  20. }
  21. }
  22. @media screen and (min-width: 991px) {
  23. .main-header .nav-bottom .page-navigation {
  24. margin: 0 -20px;
  25. }
  26. .main-header .nav-bottom .page-navigation > .nav-item:hover .navbar-dropdown {
  27. display: block;
  28. }
  29. .toggle-nav-search {
  30. display: none;
  31. }
  32. #search-nav {
  33. display: block !important;
  34. }
  35. }
  36. @media screen and (max-width: 991px) {
  37. .main-header {
  38. .nav-top {
  39. min-height: 60px;
  40. height: 100%;
  41. .container {
  42. padding: 0px;
  43. width: 100%;
  44. max-width: unset;
  45. margin: 0;
  46. }
  47. }
  48. .nav-bottom {
  49. height: 100%;
  50. width: 275px;
  51. max-width: calc(100% - 40px);
  52. position: fixed;
  53. z-index: 1200;
  54. left: 0 !important;
  55. right: 0;
  56. top: 0;
  57. -webkit-transform: translate3d(-275px, 0, 0);
  58. -moz-transform: translate3d(-275px, 0, 0);
  59. -o-transform: translate3d(-275px, 0, 0);
  60. -ms-transform: translate3d(-275px, 0, 0);
  61. transform: translate3d(-275px, 0, 0) !important;
  62. transition: all .5s;
  63. margin-top: 0px;
  64. > .container {
  65. padding: 0;
  66. }
  67. .title-menu {
  68. font-size: 14px;
  69. margin: 0;
  70. color: #fff;
  71. height: 56px;
  72. display: flex;
  73. align-items: center;
  74. padding: 0 20px;
  75. position: relative;
  76. font-weight: 300;
  77. text-transform: uppercase;
  78. .close-menu {
  79. color: #fff;
  80. position: absolute;
  81. top: 50%;
  82. right: 15px;
  83. transform: translateY(-50%);
  84. cursor: pointer;
  85. font-size: 18px;
  86. }
  87. }
  88. .page-navigation {
  89. max-height: calc(100vh - 60px);
  90. padding-bottom: 60px;
  91. overflow-y: auto;
  92. overflow-x: hidden;
  93. > .nav-item{
  94. width: 100%;
  95. border-bottom: 1px solid #eee;
  96. &:first-child > a {
  97. margin-left: 0;
  98. }
  99. > .nav-link {
  100. width: 100%;
  101. position: relative;
  102. }
  103. .navbar-dropdown {
  104. position: relative;
  105. top: 0;
  106. border: 0;
  107. box-shadow: none;
  108. ul {
  109. padding: 0 25px 15px !important;
  110. }
  111. }
  112. &.submenu {
  113. > .nav-link {
  114. &:after {
  115. position: absolute;
  116. right: 35px;
  117. height: unset;
  118. }
  119. }
  120. }
  121. &.mega-menu {
  122. .navbar-dropdown {
  123. padding: 5px !important;
  124. }
  125. }
  126. .category-heading {
  127. padding-top: 0px;
  128. }
  129. &.show-submenu {
  130. .navbar-dropdown {
  131. display: block;
  132. }
  133. }
  134. &:not(.show-submenu) {
  135. > .nav-link {
  136. &:after {
  137. transform: rotate(0deg) !important;
  138. }
  139. }
  140. }
  141. }
  142. }
  143. }
  144. }
  145. .main-panel {
  146. > .content, > .content-full {
  147. margin-top: 63px;
  148. }
  149. }
  150. .nav_open .nav-bottom {
  151. -webkit-transform: translate3d(0px, 0, 0);
  152. -moz-transform: translate3d(0px, 0, 0);
  153. -o-transform: translate3d(0px, 0, 0);
  154. -ms-transform: translate3d(0px, 0, 0);
  155. transform: translate3d(0px, 0, 0) !important;
  156. .title-menu {
  157. .close-menu {
  158. right: -30px !important;
  159. }
  160. }
  161. }
  162. .nav_open {
  163. overflow: hidden !important;
  164. .wrapper {
  165. overflow-x: hidden;
  166. }
  167. }
  168. .quick_sidebar_open .quick-sidebar {
  169. width: 350px;
  170. }
  171. .main-header {
  172. transition: all .5s;
  173. }
  174. #search-nav {
  175. margin: 0 auto !important;
  176. }
  177. .main-panel {
  178. width: 100%;
  179. transition: all .5s;
  180. .page-header {
  181. .dropdown-menu {
  182. &:after {
  183. right: 16px !important;
  184. }
  185. }
  186. }
  187. }
  188. .page-inner {
  189. padding-right: 15px;
  190. padding-left: 15px;
  191. margin-right: auto;
  192. margin-left: auto;
  193. }
  194. .page-sidebar {
  195. background: #fff;
  196. }
  197. .nav-top {
  198. display: flex;
  199. width: 100% !important;
  200. text-align: left;
  201. position: relative;
  202. padding-left: 15px;
  203. padding-right: 15px;
  204. .logo {
  205. position: absolute;
  206. left: 50%;
  207. transform: translateX(-50%);
  208. height: 100%;
  209. }
  210. .navbar-toggler {
  211. height: 100%;
  212. margin-left: 0px !important;
  213. opacity: 1;
  214. display: block;
  215. order: 1;
  216. }
  217. .more {
  218. opacity: 1;
  219. color: #545454;
  220. cursor: pointer;
  221. display: inline-block;
  222. line-height: 56px;
  223. order: 3;
  224. width: unset;
  225. margin-left: auto;
  226. }
  227. .navbar-brand {
  228. position: unset !important;
  229. margin-right: 0px;
  230. }
  231. }
  232. .nav-search {
  233. width: 100%;
  234. margin-right: 0 !important;
  235. }
  236. .navbar-header {
  237. position: absolute;
  238. width: 100%;
  239. transform: translate3d(0, -200px, 0) !important;
  240. transition: all .5s;
  241. left: 0;
  242. }
  243. .topbar_open {
  244. .navbar-header {
  245. transform: translate3d(0, 60px, 0) !important;
  246. padding: 6px;
  247. .navbar-nav {
  248. > .nav-item {
  249. .nav-link {
  250. i {
  251. font-size: 19px;
  252. }
  253. }
  254. &:last-child {
  255. .nav-link {
  256. padding: 0px !important;
  257. }
  258. .quick-sidebar-toggler {
  259. padding-left: 5px !important;
  260. }
  261. }
  262. }
  263. }
  264. }
  265. .toggle-nav-search {
  266. display: list-item;
  267. }
  268. #search-nav {
  269. text-align: center;
  270. width: 100%;
  271. padding: 10px 15px 0px;
  272. order: 1;
  273. }
  274. .main-panel {
  275. transform: translate3d(0, 62px, 0) !important;
  276. }
  277. > .content {
  278. margin-top: 0px !important;
  279. }
  280. }
  281. .navbar-header .navbar-nav {
  282. width: 100%;
  283. flex-direction: row;
  284. justify-content: center;
  285. margin-left: 0px !important;
  286. position: relative;
  287. .dropdown {
  288. position: unset;
  289. }
  290. .dropdown-menu {
  291. position: absolute;
  292. left: 0;
  293. right: 0;
  294. margin: 0 auto;
  295. max-width: 280px;
  296. }
  297. }
  298. .profile-pic span {
  299. display: none;
  300. }
  301. .nav-toggle{
  302. display: none;
  303. }
  304. .page-title{
  305. font-size: 18px;
  306. }
  307. .card {
  308. .card-title {
  309. font-size: 18px;
  310. }
  311. }
  312. .mail-wrapper {
  313. .mail-option {
  314. .email-filters-left {
  315. width: 50%;
  316. .btn-group {
  317. margin-bottom: 10px;
  318. }
  319. }
  320. }
  321. }
  322. /* Dropzone */
  323. .dropzone {
  324. padding: 20px 15px !important;
  325. .dz-message {
  326. .message {
  327. font-size: 23px;
  328. }
  329. .note {
  330. font-size: 15px;
  331. }
  332. }
  333. }
  334. }
  335. @media screen and (min-width: 856px) {
  336. .mail-wrapper {
  337. .aside-nav {
  338. display: block !important;
  339. }
  340. }
  341. }
  342. @media screen and (max-width: 856px) {
  343. .mail-wrapper {
  344. flex-direction: column;
  345. .page-aside {
  346. width: 100%;
  347. height: unset;
  348. min-height: unset;
  349. border-bottom: 1px solid #eee;
  350. border-left: 0;
  351. border-right: 0;
  352. background: $transparent-bg;
  353. padding-top: 0px;
  354. padding-bottom: 0px;
  355. .aside-header {
  356. padding-top: 25px;
  357. padding-bottom: 25px;
  358. background: $grey-color;
  359. }
  360. .aside-nav {
  361. background: $white-color;
  362. padding-top: 15px;
  363. padding-bottom: 15px;
  364. }
  365. }
  366. .mail-content {
  367. width: 100%;
  368. .inbox-head{
  369. flex-direction: column;
  370. align-items: left;
  371. h3 {
  372. font-size: 18px;
  373. }
  374. form {
  375. margin-left: 0px !important;
  376. margin-top: 15px;
  377. }
  378. }
  379. .email-head{
  380. h3 {
  381. font-size: 18px;
  382. }
  383. }
  384. .email-compose-fields {
  385. padding: 20px 15px;
  386. }
  387. }
  388. .mail-option {
  389. flex-direction: column;
  390. .email-filters-left {
  391. width: 100%;
  392. margin-bottom: 10px;
  393. }
  394. }
  395. .toggle-email-nav {
  396. display: inline-block !important;
  397. }
  398. .table-inbox {
  399. tr {
  400. td {
  401. .badge {
  402. margin-top: 5px;
  403. float: left;
  404. }
  405. }
  406. }
  407. }
  408. }
  409. }
  410. @media screen and (max-width: 767px){
  411. .wizard-container {
  412. margin-left: 15px;
  413. margin-right: 15px;
  414. }
  415. .main-panel {
  416. .page-header {
  417. flex-direction: column;
  418. align-items: normal;
  419. position: relative;
  420. min-height: 43px;
  421. justify-content: center;
  422. .breadcrumbs {
  423. margin-left: 0px;
  424. padding-top: 15px;
  425. padding-left: 5px;
  426. padding-bottom: 0px;
  427. border-left: 0px;
  428. }
  429. .btn-group-page-header{
  430. position: absolute;
  431. right: 0px;
  432. }
  433. }
  434. }
  435. .footer .container-fluid{
  436. flex-direction: column;
  437. .copyright {
  438. margin-left: 0 !important;
  439. margin-top: 10px;
  440. margin-bottom: 15px;
  441. }
  442. }
  443. }
  444. @media screen and (max-width: 576px){
  445. #chart-container {
  446. min-height: 250px;
  447. }
  448. .form-check-inline {
  449. display: flex;
  450. flex-direction: column;
  451. align-items: left;
  452. }
  453. #calendar {
  454. .fc-toolbar {
  455. display: flex;
  456. flex-direction: column;
  457. %fc-position-margin {
  458. margin: auto;
  459. margin-bottom: 15px;
  460. }
  461. .fc-left {
  462. @extend %fc-position-margin;
  463. order: 1;
  464. }
  465. .fc-right {
  466. @extend %fc-position-margin;
  467. order: 3;
  468. }
  469. .fc-center {
  470. @extend %fc-position-margin;
  471. order: 2;
  472. }
  473. }
  474. }
  475. .conversations {
  476. .conversations-body {
  477. padding: 1.5rem 1rem;
  478. }
  479. }
  480. }
  481. @media screen and (max-width: 350px){
  482. .quick_sidebar_open .quick-sidebar {
  483. width: 100%;
  484. padding: 20px;
  485. }
  486. }