source: resources/assets/sass/components/table.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 1.1 KB
Line 
1.table {
2 &:not(.table-bordered) {
3 thead th {
4 border-top: none;
5 border-bottom-width: 1px;
6 font-weight: 500;
7 text-transform: uppercase;
8 font-size: 11px;
9 letter-spacing: .5px;
10 }
11
12 td {
13 vertical-align: middle;
14 line-height: 1;
15 white-space: nowrap;
16 }
17 }
18
19 .dropdown-menu {
20 margin-top: 0;
21 }
22
23 &.table-lg {
24 td {
25 padding: 1.3rem .75rem;
26 }
27 }
28
29 tr {
30 &.tr-selected {
31 background-color: darken(white, 4%);
32 }
33 }
34
35 &.table-striped tbody tr:nth-of-type(odd) {
36 background-color: rgba(0, 0, 0, .03);
37 }
38}
39
40.table-responsive-stack tr {
41 display: -webkit-box;
42 display: -ms-flexbox;
43 display: flex;
44 -webkit-box-orient: horizontal;
45 -webkit-box-direction: normal;
46 -ms-flex-direction: row;
47 flex-direction: row;
48}
49
50.table-responsive-stack td,
51.table-responsive-stack th {
52 display: block;
53 -ms-flex: 1 1 auto;
54 flex: 1 1 auto;
55}
Note: See TracBrowser for help on using the repository browser.