Changeset fa375fe for trip-planner-front/node_modules/bootstrap/less
- Timestamp:
- 10/16/21 18:10:51 (3 years ago)
- Branches:
- master
- Children:
- eed0bf8
- Parents:
- 6a3a178
- Location:
- trip-planner-front/node_modules/bootstrap/less
- Files:
-
- 68 added
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/bootstrap/less/mixins/reset-text.less
r6a3a178 rfa375fe 1 @mixin reset-text{2 font-family: $font-family-base;3 // We deliberately do NOT reset font-size or overflow-wrap / word-wrap.1 .reset-text() { 2 font-family: @font-family-base; 3 // We deliberately do NOT reset font-size. 4 4 font-style: normal; 5 font-weight: $font-weight-normal; 6 line-height: $line-height-base; 5 font-weight: 400; 6 line-height: @line-height-base; 7 line-break: auto; 7 8 text-align: left; // Fallback for where `start` is not supported 8 9 text-align: start; … … 13 14 word-break: normal; 14 15 word-spacing: normal; 16 word-wrap: normal; 15 17 white-space: normal; 16 line-break: auto;17 18 } -
trip-planner-front/node_modules/bootstrap/less/mixins/resize.less
r6a3a178 rfa375fe 1 1 // Resize anything 2 2 3 @mixin resizable($direction) {3 .resizable(@direction) { 4 4 overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 resize: $direction; // Options: horizontal, vertical, both5 resize: @direction; // Options: horizontal, vertical, both 6 6 } -
trip-planner-front/node_modules/bootstrap/less/mixins/text-overflow.less
r6a3a178 rfa375fe 1 // Text truncate1 // Text overflow 2 2 // Requires inline-block or block for proper styling 3 3 4 @mixin text-truncate() {4 .text-overflow() { 5 5 overflow: hidden; 6 6 text-overflow: ellipsis;
Note:
See TracChangeset
for help on using the changeset viewer.