1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| .normal-header {
| position: relative;
| height: 45px;
| border-bottom: 1px solid #e8e8e8;
| overflow: hidden;
|
| .title {
| text-decoration: inherit;
| font-weight: inherit;
| font-style: inherit;
| float: left;
| line-height: 45px;
| margin-left: 10px;
| position: relative;
| z-index: 1;
| min-height: 45px;
| min-width: 30px;
| }
| }
| .normal-header.hidden {
| display: none;
| }
|
|