diff --git a/assets/stylesheets/global/_base.scss b/assets/stylesheets/global/_base.scss index 33c77a5e..b4a7bdd7 100644 --- a/assets/stylesheets/global/_base.scss +++ b/assets/stylesheets/global/_base.scss @@ -218,6 +218,10 @@ button:focus { outline: -webkit-focus-ring-color auto 5px; } +img, iframe { + background: $externalsBackground; +} + input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; diff --git a/assets/stylesheets/global/_variables-dark.scss b/assets/stylesheets/global/_variables-dark.scss index 17129d9f..2f962de4 100644 --- a/assets/stylesheets/global/_variables-dark.scss +++ b/assets/stylesheets/global/_variables-dark.scss @@ -13,6 +13,8 @@ $sidebarMediumWidth: 16rem; $documentBackground: #222; $contentBackground: #33373a; +$externalsBackground: #fff; + $textColor: #cbd0d0; $textColorLight: #9da5ad; $textColorLighter: #77787a; diff --git a/assets/stylesheets/global/_variables.scss b/assets/stylesheets/global/_variables.scss index bbdedf9f..b3ae528e 100644 --- a/assets/stylesheets/global/_variables.scss +++ b/assets/stylesheets/global/_variables.scss @@ -13,6 +13,8 @@ $sidebarMediumWidth: 16rem; $documentBackground: #f3f3f3; $contentBackground: #fff; +$externalsBackground: $contentBackground; + $textColor: #333; $textColorLight: #666; $textColorLighter: #888;