X-Git-Url: https://git.danix.xyz/?a=blobdiff_plain;f=assets%2Fsass%2Fbourbon%2Fbourbon%2Flibrary%2F_buttons.scss;fp=assets%2Fsass%2Fbourbon%2Fbourbon%2Flibrary%2F_buttons.scss;h=0000000000000000000000000000000000000000;hb=608ee6ced3bb9f1200894828d5f91dd8d37e3cce;hp=a03485dbcdf95ddf4357d32211b161e6e9533b6c;hpb=43912bcaf275017baa77551f359b0b2be498e5b3;p=theme-danix.xyz.git diff --git a/assets/sass/bourbon/bourbon/library/_buttons.scss b/assets/sass/bourbon/bourbon/library/_buttons.scss deleted file mode 100644 index a03485d..0000000 --- a/assets/sass/bourbon/bourbon/library/_buttons.scss +++ /dev/null @@ -1,84 +0,0 @@ -@charset "UTF-8"; - -//// -/// @type list -/// -/// @require {function} _assign-inputs -/// -/// @require {variable} $_buttons-list -//// - -/// A list of all HTML button elements. Please note that you must interpolate -/// the variable (`#{}`) to use it as a selector. -/// -/// @example scss -/// #{$all-buttons} { -/// background-color: #f00; -/// } -/// -/// // CSS Output -/// button, -/// [type='button'], -/// [type='reset'], -/// [type='submit'] { -/// background-color: #f00; -/// } - -$all-buttons: _assign-inputs($_buttons-list); - -/// A list of all HTML button elements with the `:active` pseudo-class applied. -/// Please note that you must interpolate the variable (`#{}`) to use it as a -/// selector. -/// -/// @example scss -/// #{$all-buttons-active} { -/// background-color: #00f; -/// } -/// -/// // CSS Output -/// button:active, -/// [type='button']:active, -/// [type='reset']:active, -/// [type='submit']:active { -/// background-color: #00f; -/// } - -$all-buttons-active: _assign-inputs($_buttons-list, active); - -/// A list of all HTML button elements with the `:focus` pseudo-class applied. -/// Please note that you must interpolate the variable (`#{}`) to use it as a -/// selector. -/// -/// @example scss -/// #{$all-buttons-focus} { -/// background-color: #0f0; -/// } -/// -/// // CSS Output -/// button:focus, -/// [type='button']:focus, -/// [type='reset']:focus, -/// [type='submit']:focus { -/// background-color: #0f0; -/// } - -$all-buttons-focus: _assign-inputs($_buttons-list, focus); - -/// A list of all HTML button elements with the `:hover` pseudo-class applied. -/// Please note that you must interpolate the variable (`#{}`) to use it as a -/// selector. -/// -/// @example scss -/// #{$all-buttons-hover} { -/// background-color: #0f0; -/// } -/// -/// // CSS Output -/// button:hover, -/// [type='button']:hover, -/// [type='reset']:hover, -/// [type='submit']:hover { -/// background-color: #0f0; -/// } - -$all-buttons-hover: _assign-inputs($_buttons-list, hover);