mirror of https://github.com/freeCodeCamp/devdocs
parent
eadda8fc42
commit
f7a381c534
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 109 KiB |
@ -0,0 +1,14 @@
|
|||||||
|
#= require views/pages/base
|
||||||
|
|
||||||
|
class app.views.SupportTablesPage extends app.views.BasePage
|
||||||
|
@events:
|
||||||
|
click: 'onClick'
|
||||||
|
|
||||||
|
onClick: (event) ->
|
||||||
|
return unless event.target.classList.contains 'show-all'
|
||||||
|
$.stopEvent(event)
|
||||||
|
|
||||||
|
el = event.target
|
||||||
|
el = el.parentNode until el.tagName is 'TABLE'
|
||||||
|
el.classList.add 'show-all'
|
||||||
|
return
|
@ -0,0 +1,64 @@
|
|||||||
|
._support_tables {
|
||||||
|
h2 { @extend %block-heading; }
|
||||||
|
code { @extend %label; }
|
||||||
|
|
||||||
|
> .stats {
|
||||||
|
tr.show-all ~ tr { display: none; }
|
||||||
|
|
||||||
|
&.show-all {
|
||||||
|
tr.show-all { display: none; }
|
||||||
|
tr.show-all ~ tr { display: table-row; }
|
||||||
|
}
|
||||||
|
|
||||||
|
td, th {
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
min-width: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 2px;
|
||||||
|
font-size: .625rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.current {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: .125rem .25rem;
|
||||||
|
white-space: nowrap;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.y {
|
||||||
|
color: white;
|
||||||
|
background: #39b54a;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.n, td.p {
|
||||||
|
color: white;
|
||||||
|
background: #c44230;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.a {
|
||||||
|
color: white;
|
||||||
|
background: #a8bd04;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.u {
|
||||||
|
color: white;
|
||||||
|
background: #838383;
|
||||||
|
}
|
||||||
|
|
||||||
|
th.show-all {
|
||||||
|
background: none;
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.show-all { display: block; }
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 747 B |
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1 @@
|
|||||||
|
http://www.entypo.com/
|
Loading…
Reference in new issue