Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorm5o <m5o@gmx.com>2018-11-21 21:59:21 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-11-21 21:59:21 +0300
commit31d6d03c47cc648a9fa32efc0baaf08ae4f6c241 (patch)
tree494cd4d00d4322492ccfe7506c41784ee4c9bafe
parent58943c0257bc36307411c33572f861d825176bfc (diff)
Placeholders: use our gray colors (#27701)
Previously we were using the old holder.js colors.
-rw-r--r--site/_includes/icons/placeholder.svg8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/_includes/icons/placeholder.svg b/site/_includes/icons/placeholder.svg
index 03f06c0482..159c2a335c 100644
--- a/site/_includes/icons/placeholder.svg
+++ b/site/_includes/icons/placeholder.svg
@@ -5,16 +5,16 @@
title: Used in the SVG `title` tag
text: The text to show in the image - default: 'width x height'
class: default: 'bd-placeholder-img'
- color: The text color (foreground) - default: '#ddd'
- background: The background color - default: '#777'
+ color: The text color (foreground) - default: '#dee2e6'
+ background: The background color - default: '#868e96'
width: default: 100%
height: default: 180px
{%- endcomment -%}
{%- assign title = include.title | default: 'Generic Placeholder Image' -%}
{%- assign class = include.class | default: '' -%}
-{%- assign color = include.color | default: '#ddd' -%}
-{%- assign background = include.background | default: '#777' -%}
+{%- assign color = include.color | default: site.data.grays[2].hex -%}
+{%- assign background = include.background | default: site.data.grays[5].hex -%}
{%- assign width = include.width | default: '100%' -%}
{%- assign height = include.height | default: '180' -%}