Remove font-weight: bold

In PG, a different font family (Roboto Medium) is used for bolding fonts
in the UI. This change removes this rule and replaces it where
necessary.

Change-Id: Ic3725a71614b06e568fa537b1adbbc788bb7c1f8
This commit is contained in:
Kasper Nilsson
2018-08-20 11:13:55 -07:00
parent 524b87283c
commit 05c3c65a33
4 changed files with 1 additions and 9 deletions

View File

@@ -56,7 +56,6 @@ limitations under the License.
float: right; float: right;
} }
.title { .title {
font-weight: bold;
min-width: 10em; min-width: 10em;
padding: .75em .5em 0 var(--requirements-horizontal-padding); padding: .75em .5em 0 var(--requirements-horizontal-padding);
vertical-align: top; vertical-align: top;

View File

@@ -51,7 +51,6 @@ limitations under the License.
} }
header gr-editable-label { header gr-editable-label {
font-size: var(--font-size-large); font-size: var(--font-size-large);
font-weight: bold;
--label-style: { --label-style: {
text-overflow: initial; text-overflow: initial;
white-space: initial; white-space: initial;

View File

@@ -29,12 +29,6 @@ limitations under the License.
<template strip-whitespace> <template strip-whitespace>
<style include="gr-voting-styles"></style> <style include="gr-voting-styles"></style>
<style include="shared-styles"> <style include="shared-styles">
.title {
font-weight: bold;
max-width: 20em;
padding-right: .5em;
word-break: break-word;
}
.placeholder { .placeholder {
color: var(--deemphasized-text-color); color: var(--deemphasized-text-color);
padding-top: .2em; padding-top: .2em;

View File

@@ -39,7 +39,7 @@ limitations under the License.
} }
.info > div > span { .info > div > span {
display: inline-block; display: inline-block;
font-weight: bold; font-family: var(--font-family-bold);
text-align: right; text-align: right;
width: 4em; width: 4em;
} }