~divmod-dev/divmod.org/trunk

« back to all changes in this revision

Viewing changes to Nevow/nevow/css/Nevow/TagLibrary/TabbedPane.css

  • Committer: Jean-Paul Calderone
  • Date: 2014-06-29 20:33:04 UTC
  • mfrom: (2749.1.1 remove-epsilon-1325289)
  • Revision ID: exarkun@twistedmatrix.com-20140629203304-gdkmbwl1suei4m97
mergeĀ lp:~exarkun/divmod.org/remove-epsilon-1325289

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.nevow-tabbedpane-tabs {
2
 
  display: inline;
3
 
  list-style: none;
4
 
  padding: 0;
5
 
  margin: 0;
6
 
  margin-left: 0.1em;
7
 
}
8
 
 
9
 
.nevow-tabbedpane-tab,
10
 
.nevow-tabbedpane-selected-tab {
11
 
  display: inline;
12
 
  padding: 0 2em;
13
 
  border: 1px solid #666;
14
 
  background: #eee;
15
 
  cursor: pointer;
16
 
  margin-right: 0.25em;
17
 
}
18
 
 
19
 
.nevow-tabbedpane-tab:hover {
20
 
  background: #f5f5f5;
21
 
}
22
 
 
23
 
.nevow-tabbedpane-selected-tab {
24
 
  border-bottom: 1px solid #fff;
25
 
  background: #fff;
26
 
}
27
 
 
28
 
.nevow-tabbedpane-pane {
29
 
  clear: both;
30
 
  position: absolute;
31
 
  top: -10000px;
32
 
  left: -10000px;
33
 
}
34
 
 
35
 
.nevow-tabbedpane-selected-pane {
36
 
  position: static;
37
 
  border: 1px solid #666;
38
 
  margin-bottom: 1em;
39
 
  padding: 1em;
40
 
}