/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pyserver/static/base.css

  • Committer: Suren A. Chilingaryan
  • Date: 2016-03-04 18:30:43 UTC
  • mfrom: (346.1.39 pcitool)
  • Revision ID: csa@suren.me-20160304183043-mjf6xvyermjh5olg
Integrate last part of Python code from Vasiliy Chernov

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.tabs > div, .tabs > input { display: none; }
2
 
 
3
 
.tabs label {
4
 
   padding: 5px;
5
 
   border: 1px solid #aaa;
6
 
   line-height: 28px;
7
 
   cursor: pointer;
8
 
   position: relative;
9
 
   bottom: 1px;
10
 
   background: #fff;
11
 
}
12
 
 
13
 
.tabs input[type="radio"]:checked + label { border-bottom: 2px solid #fff; }
14
 
 
15
 
.tabs > input:nth-of-type(1):checked ~ div:nth-of-type(1),
16
 
.tabs > input:nth-of-type(2):checked ~ div:nth-of-type(2) {
17
 
   display: block; 
18
 
   padding: 5px; 
19
 
   border: 
20
 
   1px solid #aaa;
21
 
}
22
1
.tree {
23
2
   height: 85vh;
24
3
   padding: 5px;
44
23
   
45
24
   text-align: left;
46
25
}
 
26