Blame view

resource/public/commoncss.css 4.29 KB
d34df23d   liuqimichale   头部公用
1
2
3
4
5
6
  /********************************************初始化样式*/
  
  /********************************************公共样式*/
  html,body{
      background-color: #f6f7fb;
      min-width: 1200px;
22d9fdfb   liuqimichale   字体
7
      font-family:"PingFang SC","微软雅黑","Microsoft YaHei",Helvetica,"Helvetica Neue",Tahoma,Arial,sans-serif;
d34df23d   liuqimichale   头部公用
8
9
10
  }
  ul,li{
      list-style: none;
628c8da6   liuqimichale   填报--- 时间操作
11
      padding-left: 0;
d34df23d   liuqimichale   头部公用
12
13
14
15
16
17
18
19
20
  }
  .float-left{
      float: left;
  }
  .float-right{
      float: right;
  }
  .cursorpointer{
      cursor: pointer;
affc0c13   liuqimichale   tuichu
21
      font-size: 14px;
d34df23d   liuqimichale   头部公用
22
  }
7552bd7a   liuqimichale   填报--- 时间操作
23
24
25
  .display-none{
      display: none;
  }
639e6e86   liuqimichale   查询--- 时间操作
26
  .boxshadow{
6ee5727e   liuqimichale   查询--- 搜索结果
27
28
      -moz-box-shadow:0 0 24px rgba(0,0,0,0.07); /* 老的 Firefox */
      box-shadow:0 0 24px rgba(0,0,0,0.07);
639e6e86   liuqimichale   查询--- 时间操作
29
  }
d34df23d   liuqimichale   头部公用
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
  /********************************************头部公共样式*/
  header{
      width: 100%;
      height: 90px;
      line-height: 90px;
      background-color: #fff;
      box-shadow: 0 2px  15px rgba(0,0,0,.1);
  }
  .nav-bar-wrap{
      width: 1200px;
      margin: 0 auto;
  }
  .login-name{
      font-size: 34px;
      color: #4886ff;
  }
  .login-name span:nth-of-type(2){
      font-size: 14px;
      color: rgba(0,0,0,.5);
  }
  .nav-bar-container li{
      float: left;
      width: 80px;
      height: 90px;
      line-height: 90px;
      border-bottom: 4px solid #fff;
628c8da6   liuqimichale   填报--- 时间操作
56
      margin-left: 80px;
d34df23d   liuqimichale   头部公用
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
      display: inline-block;
      text-align: center;
  }
  .nav-bar-container li a{
      font-size: 16px;
      color: #363d5d;
  }
   .nav-bar-container li.navbar-active{
       border-bottom: 4px solid #4886ff;
   }
  .nav-bar-container li.navbar-active a{
      color:#4886ff ;
  }
  /********************************************内容公共样式*/
  .main-con{
      width: 1200px;
      margin: 30px auto;
7dd4675c   Andy   add 工时填报添加插件
74
  }
59622aed   liuqimichale   nodata-icon
75
76
77
78
79
  .nodata-icon{
      width: 100%;
      height: 400px;
      background: url("../../resource/img/nodata-icon.png") no-repeat center center;
  }
7dd4675c   Andy   add 工时填报添加插件
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
  /*
      ================================
      overflow 公共
      ================================
  */
  .overflowhidden{
      overflow: hidden;
  }
  .overflowhidden-y{
      overflow-y:auto;
  }
  /*不换行 省略号*/
  .hidden-nowrap{
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
  }
  .displayinline{
      display: inline-block;
  }
  /*
      ================================
      定位 公共
      ================================
  */
  .pos-rel{
      position: relative;
  }
  .pos-abs{
      position: absolute;
  }
  /*
      ================================
10a806ac   Andy   color
113
114
115
116
117
118
119
120
      字体颜色  公共
      ================================
  */
  .form-control,.btn-default{
      color: rgba(0,0,0,.5) !important;
  }
  /*
      ================================
7dd4675c   Andy   add 工时填报添加插件
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
      flex  公共
      ================================
  */
  .common-display-flex{
      display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
      display: flex;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
  }
  .common-perflex{
      flex:1;
  }
  /*
      ================================
      @主题样式
      鼠标  公共
      ================================
  */
  .cursor-pointer{
      cursor: pointer;
  }
  .display-inlineblock{
      display: inline-block;
  }
  .vertical-align-middle{
      vertical-align: middle;
0486a995   Andy   add
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  }
  /*bootstrap table  表头样式*/
  /*
      table border
  */
  .fixed-table-container{
      border:none;
  }
  /*
      table 样式
  */
  .table>thead>tr>th {
      vertical-align: middle !important;
  }
  
  .fixed-table-container thead th {
      border-left: none !important;
  }
  .fixed-table-container thead th {
      border-left: none !important;
  }
  
  .fixed-table-container tbody td {
      border-left: none !important;
cbd7c7e7   Andy   添加提示弹窗 工时填写页面
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
  }
  /*弹窗 提示*/
  .ITD-modal-config, .ITD-modal-dialog {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%)!important;
      -webkit-transform: translate(-50%,-50%)!important;
      -moz-transform: translate(-50%,-50%)!important;
      -ms-transform: translate(-50%,-50%)!important;
      -o-transform: translate(-50%,-50%)!important;
  }
  
  .blue-modal {
      width: 380px;
  }
  .modal-content {
      color: rgba(0,0,0,.7);
  }
  .modal-content {
      border-radius: 4px !important;
  }
  .ITD-model-header {
      line-height: 67px;
      height: 67px;
      padding: 0 15px 0 38px;
  }
  .ITD-alertmodel-contentmsg {
      height: 100px;
      line-height: 100px;
      text-align: center;
      width: 100%;
      margin-top: 8px;
  }
  .ITD-model-close {
      margin-top: 10px !important;
  }
  .ITD-common-fontsize16 {
      font-size: 16px;
  }
  .ITD-ztree-headername {
3868c150   Andy   添加提示弹窗 工时填写页面
213
      border-left: 3px solid #4886ff;
cbd7c7e7   Andy   添加提示弹窗 工时填写页面
214
215
      padding-left: 12px;
      height: 16px;
3868c150   Andy   添加提示弹窗 工时填写页面
216
      color: #4886ff;
cbd7c7e7   Andy   添加提示弹窗 工时填写页面
217
218
      line-height: 16px;
      display: inline-block;
d34df23d   liuqimichale   头部公用
219
  }