Extracts tabs into reusable CSS
This commit is contained in:
parent
067adb0052
commit
2854aa9235
6 changed files with 76 additions and 58 deletions
|
@ -59,9 +59,9 @@ class Preferences extends React.Component {
|
||||||
</Helmet>
|
</Helmet>
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabList>
|
<TabList>
|
||||||
<div className="preference__subheadings">
|
<div className="tabs__titles">
|
||||||
<Tab><h4 className="preference__subheading">General Settings</h4></Tab>
|
<Tab><h4 className="tabs__title">General Settings</h4></Tab>
|
||||||
<Tab><h4 className="preference__subheading">Accessibility</h4></Tab>
|
<Tab><h4 className="tabs__title">Accessibility</h4></Tab>
|
||||||
</div>
|
</div>
|
||||||
</TabList>
|
</TabList>
|
||||||
<TabPanel>
|
<TabPanel>
|
||||||
|
|
|
@ -53,9 +53,9 @@ class AccountView extends React.Component {
|
||||||
<h2 className="form-container__title">My Account</h2>
|
<h2 className="form-container__title">My Account</h2>
|
||||||
<Tabs className="account__tabs">
|
<Tabs className="account__tabs">
|
||||||
<TabList>
|
<TabList>
|
||||||
<div className="preference__subheadings">
|
<div className="tabs__titles">
|
||||||
<Tab><h4 className="preference__subheading">Account</h4></Tab>
|
<Tab><h4 className="tabs__title">Account</h4></Tab>
|
||||||
<Tab><h4 className="preference__subheading">Access Tokens</h4></Tab>
|
<Tab><h4 className="tabs__title">Access Tokens</h4></Tab>
|
||||||
</div>
|
</div>
|
||||||
</TabList>
|
</TabList>
|
||||||
<TabPanel>
|
<TabPanel>
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
.account__tabs {
|
.account__tabs {
|
||||||
width: 500px;
|
|
||||||
padding-top: #{20 / $base-font-size}rem;
|
padding-top: #{20 / $base-font-size}rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -60,15 +60,6 @@
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preference__subheadings {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
padding-bottom: #{0.1 / $base-font-size}rem;
|
|
||||||
@include themify() {
|
|
||||||
border-bottom: 1px solid getThemifyVariable('button-border-color');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.preference {
|
.preference {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
@ -129,48 +120,6 @@
|
||||||
width: #{44 / $base-font-size}rem;
|
width: #{44 / $base-font-size}rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-tabs__tab--selected {
|
|
||||||
@include themify() {
|
|
||||||
border-bottom: #{4 / $base-font-size}rem solid getThemifyVariable('button-background-hover-color');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-tabs__tab--selected .preference__subheading {
|
|
||||||
@include themify() {
|
|
||||||
color: getThemifyVariable('primary-text-color');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-tabs__tab {
|
|
||||||
text-align: center;
|
|
||||||
color: black;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
border-bottom: #{4 / $base-font-size}rem solid transparent;
|
|
||||||
& + & {
|
|
||||||
margin-left: #{45 / $base-font-size}rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.preference__subheading {
|
|
||||||
@include themify() {
|
|
||||||
color: getThemifyVariable('inactive-text-color');
|
|
||||||
&:hover, &:focus{
|
|
||||||
color: getThemifyVariable('primary-text-color');
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
&:focus {
|
|
||||||
color: getThemifyVariable('primary-text-color');
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
font-size: #{12 / $base-font-size}rem;
|
|
||||||
height: #{20 / $base-font-size}rem;
|
|
||||||
width: 100%;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0 #{5 /$base-font-size}rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.preference__vertical-list {
|
.preference__vertical-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
69
client/styles/components/_tabs.scss
Normal file
69
client/styles/components/_tabs.scss
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
.tabs__titles {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding-bottom: #{0.1 / $base-font-size}rem;
|
||||||
|
@include themify() {
|
||||||
|
border-bottom: 1px solid getThemifyVariable('button-border-color');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs__title {
|
||||||
|
@include themify() {
|
||||||
|
color: getThemifyVariable('inactive-text-color');
|
||||||
|
&:hover, &:focus{
|
||||||
|
color: getThemifyVariable('primary-text-color');
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
color: getThemifyVariable('primary-text-color');
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
font-size: #{12 / $base-font-size}rem;
|
||||||
|
height: #{20 / $base-font-size}rem;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 #{5 /$base-font-size}rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-tabs__tab--selected {
|
||||||
|
@include themify() {
|
||||||
|
border-bottom: #{4 / $base-font-size}rem solid getThemifyVariable('button-background-hover-color');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-tabs__tab--selected .tabs__title {
|
||||||
|
@include themify() {
|
||||||
|
color: getThemifyVariable('primary-text-color');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-tabs__tab {
|
||||||
|
text-align: center;
|
||||||
|
color: black;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
border-bottom: #{4 / $base-font-size}rem solid transparent;
|
||||||
|
& + & {
|
||||||
|
margin-left: #{45 / $base-font-size}rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs__title {
|
||||||
|
@include themify() {
|
||||||
|
color: getThemifyVariable('inactive-text-color');
|
||||||
|
&:hover, &:focus{
|
||||||
|
color: getThemifyVariable('primary-text-color');
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
color: getThemifyVariable('primary-text-color');
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
font-size: #{12 / $base-font-size}rem;
|
||||||
|
height: #{20 / $base-font-size}rem;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 #{5 /$base-font-size}rem;
|
||||||
|
}
|
|
@ -45,6 +45,7 @@
|
||||||
@import 'components/feedback';
|
@import 'components/feedback';
|
||||||
@import 'components/loader';
|
@import 'components/loader';
|
||||||
@import 'components/uploader';
|
@import 'components/uploader';
|
||||||
|
@import 'components/tabs';
|
||||||
|
|
||||||
@import 'layout/ide';
|
@import 'layout/ide';
|
||||||
@import 'layout/fullscreen';
|
@import 'layout/fullscreen';
|
||||||
|
|
Loading…
Reference in a new issue