Skip to content

Commit

Permalink
fix(ZNTA-2382) cursor: pointer added to editor buttons, controlHeader…
Browse files Browse the repository at this point in the history
… height and padding fix
  • Loading branch information
kgough committed Feb 5, 2018
1 parent abf770c commit 4b34c36
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
Expand Up @@ -48,6 +48,11 @@ not conflict with the other frontend code
outline: inherit;
}

.EditorButton:hover, html input[type=button], input[type=reset], input[type=submit] {
cursor: pointer;
-webkit-appearance: button;
}

/* Default */

.Button--default {
Expand Down Expand Up @@ -229,3 +234,4 @@ not conflict with the other frontend code
padding: var(--Button-padding-small);
font-size: calc(14/16)rem;
}

Expand Up @@ -69,7 +69,7 @@ export const ControlsHeader = ({
}/*: props*/) => {
return (
/* eslint-disable max-len */
<nav className="flex flex-wrapper u-bgHighest u-sPH-1-2 l--cf-of u-sizeHeight-1_1-2">
<nav className="flex flex-wrapper controlHeader u-bgHighest u-sPH-1-2 l--cf-of">
<TranslatingIndicator gettextCatalog={gettextCatalog} />
<div className="u-floatLeft"><PhraseStatusFilter /></div>
{/* FIXME move InputEditorSearch into component. Layout component should
Expand Down
Expand Up @@ -996,6 +996,14 @@ label span.n1 {
background-color: var(--Editor-color-dark);
}

.controlHeader {
min-height: 2.25rem!important
padding-top: 0.2rem;
}

.TransUnit-panelFooterLeftNav .Button--snug .u-textMini {
vertical-align: text-top;
}
/**
* Media Queries
*/
Expand Down

0 comments on commit 4b34c36

Please sign in to comment.