aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/application.scss
blob: b446dde2a9c006362487fb3d525a40a96c4234bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@import '../../node_modules/video.js/dist/video-js.css';

[hidden] {
  display: none !important;
}

input.readonly {
  /* Force blank on readonly inputs */
  background-color: #fff !important;
}

.form-control, .btn {
  border-radius: 0;
}

.dropdown-menu {
  border-radius: 0;
}

.glyphicon-black {
  color: black;
}

.header {
  height: $header-height;

  my-search {
    position: fixed;
    z-index: 1000;
  }

  .search-col {
    height: 100%;
    margin-left: -15px;
    padding: 0;
  }
}

.title-menu-left {
  position: fixed;
}

.main-row {
  min-height: calc(100vh - #{$header-height} - #{$footer-height} - #{$footer-margin});
}

.main-col {

  .content-padding {
    padding: 15px 30px;

    @media screen and (min-width: 1400px) {
      padding: 15px 40px;
    }

    @media screen and (min-width: 1600px) {
      padding: 15px 50px;
    }

    @media screen and (min-width: 1800px) {
      padding: 15px 60px;
    }
  }
}

/* some fixes for ng2-smart-table */
ng2-smart-table {
  thead tr {
    border-top: 1px solid rgb(233, 235, 236)
  }

  td, th {
    padding: 8px !important;
    color: #333333 !important;
    font-size: 14px !important;
  }

  .ng2-smart-pagination-nav .page-link {
    font-size: 11px !important;
  }

  .glyphicon {
    font-family: 'Glyphicons Halflings' !important;
  }
}