Skip to content
Snippets Groups Projects
Commit d0045d16 authored by Christopher Willis-Ford's avatar Christopher Willis-Ford
Browse files

Fix stage size toggle button styling

parent 2a347dc5
Branches
Tags
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -62,8 +62,6 @@
border-bottom-right-radius: 0;
}
.stage-button-disabled {
opacity: .5;
cursor: auto;
background: transparent;
.stage-button-toggled-off {
filter: saturate(0);
}
......@@ -97,7 +97,7 @@ const StageHeaderComponent = function (props) {
className={classNames(
styles.stageButton,
styles.stageButtonLeft,
(stageSizeMode === STAGE_SIZE_MODES.small) ? null : styles.stageButtonDisabled
(stageSizeMode === STAGE_SIZE_MODES.small) ? null : styles.stageButtonToggledOff
)}
onClick={onSetStageSmall}
>
......@@ -114,7 +114,7 @@ const StageHeaderComponent = function (props) {
className={classNames(
styles.stageButton,
styles.stageButtonRight,
(stageSizeMode === STAGE_SIZE_MODES.large) ? null : styles.stageButtonDisabled
(stageSizeMode === STAGE_SIZE_MODES.large) ? null : styles.stageButtonToggledOff
)}
onClick={onSetStageLarge}
>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment