@ulu/frontend 0.1.0-beta.29 → 0.1.0-beta.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/ulu-frontend.min.css +1 -1
- package/docs-dev/changelog/index.html +26 -7
- package/docs-dev/demos/button-verbose/index.html +11 -2
- package/docs-dev/demos/card/index.html +14 -14
- package/docs-dev/demos/data-table/index.html +25 -25
- package/docs-dev/sass/components/button-verbose/index.html +3 -3
- package/docs-dev/sass/components/popover/index.html +20 -13
- package/docs-dev/sass/core/utils/index.html +523 -10
- package/package.json +1 -1
- package/scss/_layout.scss +1 -4
- package/scss/_utils.scss +152 -1
- package/scss/components/_button-verbose.scss +8 -3
- package/scss/components/_form-theme.scss +58 -58
- package/scss/components/_popover.scss +67 -4
|
@@ -5046,7 +5046,10 @@
|
|
|
5046
5046
|
<div class="toc">
|
|
5047
5047
|
<ol>
|
|
5048
5048
|
|
|
5049
|
-
<li><a href="#version-0.1.0-beta.
|
|
5049
|
+
<li><a href="#version-0.1.0-beta.30-(released)">Version 0.1.0-beta.30 (released)</a>
|
|
5050
|
+
</li>
|
|
5051
|
+
|
|
5052
|
+
<li><a href="#version-0.1.0-beta.29">Version 0.1.0-beta.29</a>
|
|
5050
5053
|
</li>
|
|
5051
5054
|
|
|
5052
5055
|
<li><a href="#version-0.1.0-beta.28">Version 0.1.0-beta.28</a>
|
|
@@ -5190,13 +5193,34 @@
|
|
|
5190
5193
|
|
|
5191
5194
|
<div class="changelog">
|
|
5192
5195
|
<h1 id="change-log" tabindex="-1">Change Log</h1>
|
|
5193
|
-
<h2 id="version-0.1.0-beta.
|
|
5196
|
+
<h2 id="version-0.1.0-beta.30-(released)" tabindex="-1">Version 0.1.0-beta.30 (released)</h2>
|
|
5197
|
+
<ul>
|
|
5198
|
+
<li>scss/components/button-verbose
|
|
5199
|
+
<ul>
|
|
5200
|
+
<li>Add button-verbose__body element</li>
|
|
5201
|
+
<li>Allow title-margin to work if body is before title</li>
|
|
5202
|
+
</ul>
|
|
5203
|
+
</li>
|
|
5204
|
+
<li>scss/component/popover
|
|
5205
|
+
<ul>
|
|
5206
|
+
<li>Change new config property "arrow-mask" to "arrow-box-shadow", remove "arrow-mask-" properties as they are no longer needed. When "arrow-box-shadow" is enabled the popovers box-shadow will be used on the arrow along with a mask that has an overlap based on the box-shadow's size.</li>
|
|
5207
|
+
</ul>
|
|
5208
|
+
</li>
|
|
5209
|
+
<li>scss/utils
|
|
5210
|
+
<ul>
|
|
5211
|
+
<li>Add (is-list, is-map, is-number, is-string, is-color) functions to reduce logic based on type (ie. <code>if(utils.is-list($value), $something, $something-else))</code></li>
|
|
5212
|
+
<li></li>
|
|
5213
|
+
</ul>
|
|
5214
|
+
</li>
|
|
5215
|
+
</ul>
|
|
5216
|
+
<h2 id="version-0.1.0-beta.29" tabindex="-1">Version 0.1.0-beta.29</h2>
|
|
5194
5217
|
<ul>
|
|
5195
5218
|
<li>scss/components/button-verbose
|
|
5196
5219
|
<ul>
|
|
5197
5220
|
<li>Setup optional selector changing (class base name)</li>
|
|
5198
5221
|
<li>Add end cap option</li>
|
|
5199
5222
|
<li>Adjust default options</li>
|
|
5223
|
+
<li>Make inline modifier remove margin right if last child</li>
|
|
5200
5224
|
</ul>
|
|
5201
5225
|
</li>
|
|
5202
5226
|
<li>scss/components/card
|
|
@@ -5206,11 +5230,6 @@
|
|
|
5206
5230
|
<li>Remove transparent on card__image--icon (will have normal default background for image area now)</li>
|
|
5207
5231
|
</ul>
|
|
5208
5232
|
</li>
|
|
5209
|
-
<li>scss/components/button-verbose
|
|
5210
|
-
<ul>
|
|
5211
|
-
<li>Make inline modifier remove margin right if last child</li>
|
|
5212
|
-
</ul>
|
|
5213
|
-
</li>
|
|
5214
5233
|
<li>scss/components/form-theme
|
|
5215
5234
|
<ul>
|
|
5216
5235
|
<li>Add "description-line-height" option defaulting to typography line-height dense</li>
|
|
@@ -5054,6 +5054,9 @@
|
|
|
5054
5054
|
|
|
5055
5055
|
<li><a href="#full-width-example">Full Width Example</a>
|
|
5056
5056
|
</li>
|
|
5057
|
+
|
|
5058
|
+
<li><a href="#title-not-first">Title Not First</a>
|
|
5059
|
+
</li>
|
|
5057
5060
|
</ol>
|
|
5058
5061
|
</div>
|
|
5059
5062
|
</div>
|
|
@@ -5082,14 +5085,20 @@
|
|
|
5082
5085
|
<p class="type-center">
|
|
5083
5086
|
<a href="#" class="button-verbose button-verbose--inline">
|
|
5084
5087
|
<strong class="button-verbose__title">Example Link</strong>
|
|
5085
|
-
This is the body
|
|
5088
|
+
<span class="button-verbose__body">This is the body</span>
|
|
5086
5089
|
<span class="button-verbose__icon fas fa-arrow-right" aria-hidden="true"></span>
|
|
5087
5090
|
</a>
|
|
5088
5091
|
</p>
|
|
5089
5092
|
<h2 id="full-width-example" tabindex="-1">Full Width Example</h2>
|
|
5090
5093
|
<a href="#" class="button-verbose button-verbose--full-width">
|
|
5091
5094
|
<strong class="button-verbose__title">Example Link</strong>
|
|
5092
|
-
This is the body
|
|
5095
|
+
<span class="button-verbose__body">This is the body</span>
|
|
5096
|
+
<span class="button-verbose__icon fas fa-arrow-right" aria-hidden="true"></span>
|
|
5097
|
+
</a>
|
|
5098
|
+
<h2 id="title-not-first" tabindex="-1">Title Not First</h2>
|
|
5099
|
+
<a href="#" class="button-verbose button-verbose--full-width">
|
|
5100
|
+
<span class="button-verbose__body">This is the body</span>
|
|
5101
|
+
<strong class="button-verbose__title">Example Link</strong>
|
|
5093
5102
|
<span class="button-verbose__icon fas fa-arrow-right" aria-hidden="true"></span>
|
|
5094
5103
|
</a>
|
|
5095
5104
|
|
|
@@ -5068,54 +5068,54 @@
|
|
|
5068
5068
|
<legend>Elements Visible</legend>
|
|
5069
5069
|
<div>
|
|
5070
5070
|
<div class="form-theme__item form-theme__item--checkbox">
|
|
5071
|
-
<input type="checkbox" id="live-demo-id-
|
|
5072
|
-
<label for="live-demo-id-
|
|
5071
|
+
<input type="checkbox" id="live-demo-id-1" name="title" checked="">
|
|
5072
|
+
<label for="live-demo-id-1">
|
|
5073
5073
|
Title
|
|
5074
5074
|
</label>
|
|
5075
5075
|
</div>
|
|
5076
5076
|
<div class="form-theme__item form-theme__item--checkbox">
|
|
5077
|
-
<input type="checkbox" id="live-demo-id-
|
|
5078
|
-
<label for="live-demo-id-
|
|
5077
|
+
<input type="checkbox" id="live-demo-id-2" name="body" checked="">
|
|
5078
|
+
<label for="live-demo-id-2">
|
|
5079
5079
|
Body
|
|
5080
5080
|
</label>
|
|
5081
5081
|
</div>
|
|
5082
5082
|
<div class="form-theme__item form-theme__item--checkbox">
|
|
5083
|
-
<input type="checkbox" id="live-demo-id-
|
|
5084
|
-
<label for="live-demo-id-
|
|
5083
|
+
<input type="checkbox" id="live-demo-id-3" name="content" checked="">
|
|
5084
|
+
<label for="live-demo-id-3">
|
|
5085
5085
|
Content
|
|
5086
5086
|
</label>
|
|
5087
5087
|
</div>
|
|
5088
5088
|
<div class="form-theme__item form-theme__item--checkbox">
|
|
5089
|
-
<input type="checkbox" id="live-demo-id-
|
|
5090
|
-
<label for="live-demo-id-
|
|
5089
|
+
<input type="checkbox" id="live-demo-id-4" name="footer" checked="">
|
|
5090
|
+
<label for="live-demo-id-4">
|
|
5091
5091
|
Footer
|
|
5092
5092
|
</label>
|
|
5093
5093
|
</div>
|
|
5094
5094
|
</div>
|
|
5095
5095
|
</fieldset>
|
|
5096
5096
|
<div class="form-theme__item form-theme__item--select">
|
|
5097
|
-
<label for="live-demo-id-
|
|
5097
|
+
<label for="live-demo-id-5">
|
|
5098
5098
|
Action
|
|
5099
5099
|
<span class="fas fa-info-circle" data-ulu-tooltip="Proxy click only works when title is present"></span>
|
|
5100
5100
|
</label>
|
|
5101
|
-
<select id="live-demo-id-
|
|
5101
|
+
<select id="live-demo-id-5" name="action">
|
|
5102
5102
|
<option value="">None</option>,<option value="link">Card is Link</option>,<option value="proxy">Proxy Click</option>
|
|
5103
5103
|
</select>
|
|
5104
5104
|
</div>
|
|
5105
5105
|
<div class="form-theme__item form-theme__item--select">
|
|
5106
|
-
<label for="live-demo-id-
|
|
5106
|
+
<label for="live-demo-id-6">
|
|
5107
5107
|
Media
|
|
5108
5108
|
</label>
|
|
5109
|
-
<select id="live-demo-id-
|
|
5109
|
+
<select id="live-demo-id-6" name="media">
|
|
5110
5110
|
<option value="icon">Icon</option>,<option value="image">Image</option>,<option value="imageFit">Image (fit)</option>,<option value="none">No Image</option>
|
|
5111
5111
|
</select>
|
|
5112
5112
|
</div>
|
|
5113
5113
|
<div class="form-theme__item form-theme__item--select">
|
|
5114
|
-
<label for="live-demo-id-
|
|
5114
|
+
<label for="live-demo-id-7">
|
|
5115
5115
|
Layout
|
|
5116
5116
|
<span class="fas fa-info-circle" data-ulu-tooltip="Overlay is not compatible with 'Icon' and 'No Image' options"></span>
|
|
5117
5117
|
</label>
|
|
5118
|
-
<select id="live-demo-id-
|
|
5118
|
+
<select id="live-demo-id-7" name="layout">
|
|
5119
5119
|
<option value="">Default</option>,<option value="horizontal">Horizontal</option>,<option value="overlay">Overlay</option>
|
|
5120
5120
|
</select>
|
|
5121
5121
|
</div>
|
|
@@ -5101,46 +5101,46 @@
|
|
|
5101
5101
|
</tfoot>
|
|
5102
5102
|
</table>
|
|
5103
5103
|
<h2 class="h2">Complex Table</h2>
|
|
5104
|
-
<table class="data-table" id="dt-
|
|
5104
|
+
<table class="data-table" id="dt-1">
|
|
5105
5105
|
<caption>
|
|
5106
5106
|
This Is The Table's Caption
|
|
5107
5107
|
</caption>
|
|
5108
5108
|
<thead>
|
|
5109
5109
|
<tr>
|
|
5110
|
-
<th id="dt-
|
|
5111
|
-
<th id="dt-
|
|
5112
|
-
<th id="dt-
|
|
5113
|
-
<th id="dt-
|
|
5110
|
+
<th id="dt-1-type" rowspan="2">Type</th>
|
|
5111
|
+
<th id="dt-1-group" colspan="2">Group</th>
|
|
5112
|
+
<th id="dt-1-details" colspan="2">Details</th>
|
|
5113
|
+
<th id="dt-1-id" rowspan="2">Id</th>
|
|
5114
5114
|
</tr>
|
|
5115
5115
|
<tr>
|
|
5116
|
-
<th headers="dt-
|
|
5117
|
-
<th headers="dt-
|
|
5118
|
-
<th headers="dt-
|
|
5119
|
-
<th headers="dt-
|
|
5116
|
+
<th headers="dt-1-group" id="dt-1-primary">Primary</th>
|
|
5117
|
+
<th headers="dt-1-group" id="dt-1-secondary">Secondary</th>
|
|
5118
|
+
<th headers="dt-1-details" id="dt-1-before">Before Task</th>
|
|
5119
|
+
<th headers="dt-1-details" id="dt-1-after">After Task</th>
|
|
5120
5120
|
</tr>
|
|
5121
5121
|
</thead>
|
|
5122
5122
|
<tbody>
|
|
5123
5123
|
<tr>
|
|
5124
|
-
<th rowspan="3" headers="dt-
|
|
5125
|
-
<td headers="dt-
|
|
5126
|
-
<td headers="dt-
|
|
5127
|
-
<td headers="dt-
|
|
5128
|
-
<td headers="dt-
|
|
5129
|
-
<td headers="dt-
|
|
5124
|
+
<th rowspan="3" headers="dt-1-type dt-1-r1" id="dt-1-r1">Default</th>
|
|
5125
|
+
<td headers="dt-1-group dt-1-primary dt-1-r1">Lorem Ipsum</td>
|
|
5126
|
+
<td headers="dt-1-group dt-1-secondary dt-1-r1">Lorem Ipsum</td>
|
|
5127
|
+
<td headers="dt-1-details dt-1-before dt-1-r1">Lorem Ipsum</td>
|
|
5128
|
+
<td headers="dt-1-details dt-1-after dt-1-r1">Lorem Ipsum</td>
|
|
5129
|
+
<td headers="dt-1-id">OL-53-GHSLE</td>
|
|
5130
5130
|
</tr>
|
|
5131
5131
|
<tr>
|
|
5132
|
-
<td headers="dt-
|
|
5133
|
-
<td headers="dt-
|
|
5134
|
-
<td headers="dt-
|
|
5135
|
-
<td headers="dt-
|
|
5136
|
-
<td headers="dt-
|
|
5132
|
+
<td headers="dt-1-group dt-1-primary dt-1-r1">Lorem Ipsum</td>
|
|
5133
|
+
<td headers="dt-1-group dt-1-secondary dt-1-r1">Lorem Ipsum</td>
|
|
5134
|
+
<td headers="dt-1-details dt-1-before dt-1-r1">Lorem Ipsum</td>
|
|
5135
|
+
<td headers="dt-1-details dt-1-after dt-1-r1">Lorem Ipsum</td>
|
|
5136
|
+
<td headers="dt-1-id">OL-53-GHSLE</td>
|
|
5137
5137
|
</tr>
|
|
5138
5138
|
<tr>
|
|
5139
|
-
<td headers="dt-
|
|
5140
|
-
<td headers="dt-
|
|
5141
|
-
<td headers="dt-
|
|
5142
|
-
<td headers="dt-
|
|
5143
|
-
<td headers="dt-
|
|
5139
|
+
<td headers="dt-1-group dt-1-primary dt-1-r1">Lorem Ipsum</td>
|
|
5140
|
+
<td headers="dt-1-group dt-1-secondary dt-1-r1">Lorem Ipsum</td>
|
|
5141
|
+
<td headers="dt-1-details dt-1-before dt-1-r1">Lorem Ipsum</td>
|
|
5142
|
+
<td headers="dt-1-details dt-1-after dt-1-r1">Lorem Ipsum</td>
|
|
5143
|
+
<td headers="dt-1-id">OL-53-GHSLE</td>
|
|
5144
5144
|
</tr>
|
|
5145
5145
|
</tbody>
|
|
5146
5146
|
</table>
|
|
@@ -5339,7 +5339,7 @@
|
|
|
5339
5339
|
<li><strong>Group:</strong> button-verbose</li>
|
|
5340
5340
|
<li><strong>Type:</strong> mixin</li>
|
|
5341
5341
|
<li><strong>Lines (comments):</strong> 101-109</li>
|
|
5342
|
-
<li><strong>Lines (code):</strong> 111-
|
|
5342
|
+
<li><strong>Lines (code):</strong> 111-192</li>
|
|
5343
5343
|
</ul>
|
|
5344
5344
|
</details>
|
|
5345
5345
|
<h4 id="examples-1" tabindex="-1">Examples</h4>
|
|
@@ -5347,14 +5347,14 @@
|
|
|
5347
5347
|
<p>Basic Example</p>
|
|
5348
5348
|
<pre class="language-html"><code class="language-html"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"><</span>a</span> <span class="pjs-token pjs-attr-name">href</span><span class="pjs-token pjs-attr-value"><span class="pjs-token pjs-punctuation pjs-attr-equals">=</span><span class="pjs-token pjs-punctuation">"</span>#<span class="pjs-token pjs-punctuation">"</span></span> <span class="pjs-token pjs-attr-name">class</span><span class="pjs-token pjs-attr-value"><span class="pjs-token pjs-punctuation pjs-attr-equals">=</span><span class="pjs-token pjs-punctuation">"</span>button-verbose<span class="pjs-token pjs-punctuation">"</span></span><span class="pjs-token pjs-punctuation">></span></span>
|
|
5349
5349
|
<span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"><</span>strong</span> <span class="pjs-token pjs-attr-name">class</span><span class="pjs-token pjs-attr-value"><span class="pjs-token pjs-punctuation pjs-attr-equals">=</span><span class="pjs-token pjs-punctuation">"</span>button-verbose__title<span class="pjs-token pjs-punctuation">"</span></span><span class="pjs-token pjs-punctuation">></span></span>Example Link<span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"></</span>strong</span><span class="pjs-token pjs-punctuation">></span></span>
|
|
5350
|
-
This is the body
|
|
5350
|
+
<span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"><</span>span</span> <span class="pjs-token pjs-attr-name">class</span><span class="pjs-token pjs-attr-value"><span class="pjs-token pjs-punctuation pjs-attr-equals">=</span><span class="pjs-token pjs-punctuation">"</span>button-verbose__body<span class="pjs-token pjs-punctuation">"</span></span><span class="pjs-token pjs-punctuation">></span></span>This is the body<span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"></</span>span</span><span class="pjs-token pjs-punctuation">></span></span>
|
|
5351
5351
|
<span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"><</span>span</span> <span class="pjs-token pjs-attr-name">class</span><span class="pjs-token pjs-attr-value"><span class="pjs-token pjs-punctuation pjs-attr-equals">=</span><span class="pjs-token pjs-punctuation">"</span>button-verbose__icon fas fa-arrow-right<span class="pjs-token pjs-punctuation">"</span></span> <span class="pjs-token pjs-attr-name">aria-hidden</span><span class="pjs-token pjs-attr-value"><span class="pjs-token pjs-punctuation pjs-attr-equals">=</span><span class="pjs-token pjs-punctuation">"</span>true<span class="pjs-token pjs-punctuation">"</span></span><span class="pjs-token pjs-punctuation">></span></span><span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"></</span>span</span><span class="pjs-token pjs-punctuation">></span></span>
|
|
5352
5352
|
<span class="pjs-token pjs-tag"><span class="pjs-token pjs-tag"><span class="pjs-token pjs-punctuation"></</span>a</span><span class="pjs-token pjs-punctuation">></span></span></code></pre>
|
|
5353
5353
|
<h5 id="preview" tabindex="-1">Preview</h5>
|
|
5354
5354
|
<div>
|
|
5355
5355
|
<a href="#" class="button-verbose">
|
|
5356
5356
|
<strong class="button-verbose__title">Example Link</strong>
|
|
5357
|
-
This is the body
|
|
5357
|
+
<span class="button-verbose__body">This is the body</span>
|
|
5358
5358
|
<span class="button-verbose__icon fas fa-arrow-right" aria-hidden="true"></span>
|
|
5359
5359
|
</a>
|
|
5360
5360
|
</div>
|
|
@@ -5099,7 +5099,8 @@
|
|
|
5099
5099
|
<p>Module Settings</p>
|
|
5100
5100
|
<pre class="language-scss"><code class="language-scss"><span class="pjs-token pjs-property"><span class="pjs-token pjs-variable">$config</span></span><span class="pjs-token pjs-punctuation">:</span> <span class="pjs-token pjs-punctuation">(</span>
|
|
5101
5101
|
<span class="pjs-token pjs-string">"arrow-size"</span> <span class="pjs-token pjs-punctuation">:</span> 16px<span class="pjs-token pjs-punctuation">,</span>
|
|
5102
|
-
<span class="pjs-token pjs-string">"arrow-
|
|
5102
|
+
<span class="pjs-token pjs-string">"arrow-box-shadow"</span> <span class="pjs-token pjs-punctuation">:</span> <span class="pjs-token pjs-boolean">true</span><span class="pjs-token pjs-punctuation">,</span>
|
|
5103
|
+
<span class="pjs-token pjs-string">"arrow-box-shadow-extent"</span> <span class="pjs-token pjs-punctuation">:</span> <span class="pjs-token pjs-null pjs-keyword">null</span><span class="pjs-token pjs-punctuation">,</span>
|
|
5103
5104
|
<span class="pjs-token pjs-string">"background-color"</span> <span class="pjs-token pjs-punctuation">:</span> white<span class="pjs-token pjs-punctuation">,</span>
|
|
5104
5105
|
<span class="pjs-token pjs-string">"border-radius"</span> <span class="pjs-token pjs-punctuation">:</span> 6px<span class="pjs-token pjs-punctuation">,</span>
|
|
5105
5106
|
<span class="pjs-token pjs-string">"color"</span> <span class="pjs-token pjs-punctuation">:</span> inherit<span class="pjs-token pjs-punctuation">,</span>
|
|
@@ -5134,8 +5135,8 @@
|
|
|
5134
5135
|
<li><strong>File:</strong> _popover.scss</li>
|
|
5135
5136
|
<li><strong>Group:</strong> popover</li>
|
|
5136
5137
|
<li><strong>Type:</strong> variable</li>
|
|
5137
|
-
<li><strong>Lines (comments):</strong> 30-
|
|
5138
|
-
<li><strong>Lines (code):</strong>
|
|
5138
|
+
<li><strong>Lines (comments):</strong> 30-61</li>
|
|
5139
|
+
<li><strong>Lines (code):</strong> 63-94</li>
|
|
5139
5140
|
</ul>
|
|
5140
5141
|
</details>
|
|
5141
5142
|
<h4 id="map-properties" tabindex="-1">Map Properties</h4>
|
|
@@ -5156,10 +5157,16 @@
|
|
|
5156
5157
|
<td style="text-align:left">Size of the dropdown arrow.</td>
|
|
5157
5158
|
</tr>
|
|
5158
5159
|
<tr>
|
|
5159
|
-
<td style="text-align:left">arrow-
|
|
5160
|
-
<td style="text-align:left">
|
|
5161
|
-
<td style="text-align:left">
|
|
5162
|
-
<td style="text-align:left">
|
|
5160
|
+
<td style="text-align:left">arrow-box-shadow</td>
|
|
5161
|
+
<td style="text-align:left">Boolean</td>
|
|
5162
|
+
<td style="text-align:left">true</td>
|
|
5163
|
+
<td style="text-align:left">When true the arrow will get the popover's box shadow. Note if the box shadow is not a list (for example custom property), the mask won't be calculated from the box-shadow (use arrow-box-shadow-extent to specify manually)</td>
|
|
5164
|
+
</tr>
|
|
5165
|
+
<tr>
|
|
5166
|
+
<td style="text-align:left">arrow-box-shadow-extent</td>
|
|
5167
|
+
<td style="text-align:left">Number</td>
|
|
5168
|
+
<td style="text-align:left">null</td>
|
|
5169
|
+
<td style="text-align:left">If set will determine the amount of overlap added to the arrow mask, else it's calculated automatically by the box-shadow option (can be used if box-shadow is custom property)</td>
|
|
5163
5170
|
</tr>
|
|
5164
5171
|
<tr>
|
|
5165
5172
|
<td style="text-align:left">background-color</td>
|
|
@@ -5339,8 +5346,8 @@
|
|
|
5339
5346
|
<li><strong>File:</strong> _popover.scss</li>
|
|
5340
5347
|
<li><strong>Group:</strong> popover</li>
|
|
5341
5348
|
<li><strong>Type:</strong> mixin</li>
|
|
5342
|
-
<li><strong>Lines (comments):</strong>
|
|
5343
|
-
<li><strong>Lines (code):</strong>
|
|
5349
|
+
<li><strong>Lines (comments):</strong> 96-99</li>
|
|
5350
|
+
<li><strong>Lines (code):</strong> 101-103</li>
|
|
5344
5351
|
</ul>
|
|
5345
5352
|
</details>
|
|
5346
5353
|
<h4 id="examples" tabindex="-1">Examples</h4>
|
|
@@ -5379,8 +5386,8 @@
|
|
|
5379
5386
|
<li><strong>File:</strong> _popover.scss</li>
|
|
5380
5387
|
<li><strong>Group:</strong> popover</li>
|
|
5381
5388
|
<li><strong>Type:</strong> mixin</li>
|
|
5382
|
-
<li><strong>Lines (comments):</strong>
|
|
5383
|
-
<li><strong>Lines (code):</strong>
|
|
5389
|
+
<li><strong>Lines (comments):</strong> 115-117</li>
|
|
5390
|
+
<li><strong>Lines (code):</strong> 119-234</li>
|
|
5384
5391
|
</ul>
|
|
5385
5392
|
</details>
|
|
5386
5393
|
<h4 id="examples-1" tabindex="-1">Examples</h4>
|
|
@@ -5403,8 +5410,8 @@
|
|
|
5403
5410
|
<li><strong>File:</strong> _popover.scss</li>
|
|
5404
5411
|
<li><strong>Group:</strong> popover</li>
|
|
5405
5412
|
<li><strong>Type:</strong> function</li>
|
|
5406
|
-
<li><strong>Lines (comments):</strong>
|
|
5407
|
-
<li><strong>Lines (code):</strong>
|
|
5413
|
+
<li><strong>Lines (comments):</strong> 105-108</li>
|
|
5414
|
+
<li><strong>Lines (code):</strong> 110-113</li>
|
|
5408
5415
|
</ul>
|
|
5409
5416
|
</details>
|
|
5410
5417
|
<h4 id="examples-2" tabindex="-1">Examples</h4>
|