diff --git a/lib/common/styles/_variables.scss b/lib/common/styles/_variables.scss index 6dcd0496..9df2da78 100644 --- a/lib/common/styles/_variables.scss +++ b/lib/common/styles/_variables.scss @@ -6,7 +6,7 @@ $side-bar-bg-color: #FAFAFA; $side-menu-item-color: #384248; $side-menu-even-bg-color: #F0F0F0; -$side-menu-active-bg-color: #E6E6E6; +$side-menu-active-bg-color: #DEDEDE; $side-menu-item-hpadding: 20px; $side-menu-item-vpadding: 5px; diff --git a/lib/components/ApiInfo/api-info.scss b/lib/components/ApiInfo/api-info.scss index fbd4d4b2..0b76f7c9 100644 --- a/lib/components/ApiInfo/api-info.scss +++ b/lib/components/ApiInfo/api-info.scss @@ -2,4 +2,5 @@ .api-info-header { color: $headers-color; + font-weight: normal; } diff --git a/lib/components/MethodsList/methods-list.scss b/lib/components/MethodsList/methods-list.scss index 8bbc0fcb..bc6f128e 100644 --- a/lib/components/MethodsList/methods-list.scss +++ b/lib/components/MethodsList/methods-list.scss @@ -15,7 +15,7 @@ .tag-info h1 { color: $headers-color; text-transform: capitalize; - font-weight: bold; + font-weight: normal; } .methods { diff --git a/lib/components/ParamsList/params-list.scss b/lib/components/ParamsList/params-list.scss index af9a4d91..80ec160d 100644 --- a/lib/components/ParamsList/params-list.scss +++ b/lib/components/ParamsList/params-list.scss @@ -4,6 +4,7 @@ padding: 0.2em 0; margin: 0.5em 0; color: #253137; + font-weight: normal; } @import '../JsonSchema/json-schema.scss'; diff --git a/lib/components/ResponsesList/responses-list.scss b/lib/components/ResponsesList/responses-list.scss index b279d536..6dd25bfc 100644 --- a/lib/components/ResponsesList/responses-list.scss +++ b/lib/components/ResponsesList/responses-list.scss @@ -3,6 +3,7 @@ padding: 0.2em 0; margin: 0.5em 0; color: #253137; + font-weight: normal; } .header-name { diff --git a/lib/components/ResponsesSamples/responses-samples.scss b/lib/components/ResponsesSamples/responses-samples.scss index a8b3481f..8a1840f4 100644 --- a/lib/components/ResponsesSamples/responses-samples.scss +++ b/lib/components/ResponsesSamples/responses-samples.scss @@ -13,6 +13,7 @@ header { margin: 5px 0; color: $sample-panel-headers-color; text-transform: uppercase; + font-weight: normal; } :host tabs li { diff --git a/lib/components/SideMenu/side-menu.scss b/lib/components/SideMenu/side-menu.scss index 16637fc8..727191da 100644 --- a/lib/components/SideMenu/side-menu.scss +++ b/lib/components/SideMenu/side-menu.scss @@ -10,7 +10,6 @@ $mobile-menu-compact-breakpoint: 550px; } .menu-cat-header { - //font-weight: bold; font-size: 15px; cursor: pointer; color: $side-menu-item-color; @@ -26,8 +25,7 @@ $mobile-menu-compact-breakpoint: 550px; } .menu-cat .menu-cat-header.active { - background-color: $side-menu-active-bg-color; - font-weight: bold; + background-color: darken($side-menu-active-bg-color, 5%); } .menu-subitems { @@ -70,7 +68,6 @@ $mobile-menu-compact-breakpoint: 550px; .menu-cat .menu-subitems { li.active, li.active:nth-of-type(even) { background-color: $side-menu-active-bg-color; - font-weight: bold; } }