/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: Vasilii Chernov
  • Date: 2016-03-03 14:38:32 UTC
  • mto: This revision was merged to the branch mainline in revision 372.
  • Revision ID: vchernov@inr.ru-20160303143832-0rlinjoy3zczhjt2
1. Pcipywrap: add persistent locking wrappings
2. html-server: 
   - add scripts tab
   - change tab view to jQuery tabs

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