William O'Beirne aa0f9cd455 Electron Redesign (#1505)
* Frameless Electron. Separate electron template. Generecize navigation link. Move nav info to config.

* Add controls for language and node, network status to sidebar.

* Sticky headers

* Move custom node modal into standalone component. Render modals via portal. Add custom node modal opening to electron node list.

* Conditional styling based on environment.

* Fix active node highlight

* Add frame back in, draggable only on OSX, fix sidebar scroll.

* Remove panel content after delay.

* Adjust window sizes

* Style desktop help nav icon

* Remove unused var

* Move style to param

* Remove unused

* Update snapshot

* Fix oversized stretching, zindex fighting

* Make electron work better with various screen sizes

* Remove not-working https option for electron

* Add beta banner

* Fix web footer

* Address changes
2018-04-16 18:30:58 -05:00

41 lines
715 B
SCSS

@import 'common/sass/variables';
.SubTabs {
margin-top: $space-xs;
.is-electron & {
margin-top: 0;
}
&-tabs {
display: inline-block;
white-space: nowrap;
&-link {
display: inline-block;
padding: 8px;
font-size: $font-size-base;
min-width: 80px;
text-align: center;
font-weight: 300;
color: $ether-navy;
border-bottom: 2px solid $gray-lighter;
transition-duration: 100ms;
&.is-active {
border-bottom-color: $brand-primary;
}
&.is-disabled {
color: $gray-light;
pointer-events: none;
text-decoration: line-through;
}
}
}
&-select {
margin-bottom: $space-md;
}
}