Skip to content

Commit

Permalink
Fixes typography issues on Typography merged PR
Browse files Browse the repository at this point in the history
This commit fixes the issues listed bellow, after we merged the Typography PR.

1) #185
2) #184
3) #183
4) #186

I'll be doing another commit to solve #192 and then will create a PR.

Signed-off-by: Ricardo Baeta <[email protected]>
  • Loading branch information
ricardobaeta committed Jul 4, 2019
1 parent db0522d commit 4048da1
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions srcd/superset/assets/stylesheets/less/custom-brand.less
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ h4.panel-title {
font-weight: 600;
font-size: 14px !important;
border-radius: 0.2rem;
width: 135px;

i {
display: none;
Expand Down Expand Up @@ -753,6 +754,52 @@ h4.panel-title {
padding-right: 32px;
}

.ReactVirtualized__Table__Grid .ReactVirtualized__Table__rowColumn button {
margin-top: 10px;
margin-bottom: 10px;
padding: 2px 16px;
background-color: #fff;
color: #f89c30;
border: none;
text-transform: uppercase;
font-weight: 600;
font-size: 14px !important;
border-radius: 0.2rem !important;
outline: 1px solid #f89c30;
outline-offset: -1px;

&:hover,
&:focus {
color: #f89c30;
background: darken(#fff, 3%);
}
i {
color: #f89c30;
}
}

//= Charts

.superset-legacy-chart-sunburst svg g text.step-label {
transform: translate(0, -10px);
}

//= Tables

.ReactVirtualized__Table
.ReactVirtualized__Grid.ReactVirtualized__Table__Grid
.ReactVirtualized__Grid__innerScrollContainer[style] {
height: 1260px !important;
max-height: 1260px !important;
}

.queryPane .SouthPane {
height: 100% !important;
.tab-pane {
overflow-y: visible;
}
}

//= Alerts, Success & Error Mesages

.label-success {
Expand Down

0 comments on commit 4048da1

Please sign in to comment.