source: trip-planner-front/node_modules/bootstrap/less/utilities.less@ ceaed42

Last change on this file since ceaed42 was fa375fe, checked in by Ema <ema_spirova@…>, 3 years ago

adding new components

  • Property mode set to 100644
File size: 794 bytes
Line 
1// stylelint-disable declaration-no-important
2
3//
4// Utility classes
5// --------------------------------------------------
6
7
8// Floats
9// -------------------------
10
11.clearfix {
12 .clearfix();
13}
14.center-block {
15 .center-block();
16}
17.pull-right {
18 float: right !important;
19}
20.pull-left {
21 float: left !important;
22}
23
24
25// Toggling content
26// -------------------------
27
28// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
29.hide {
30 display: none !important;
31}
32.show {
33 display: block !important;
34}
35.invisible {
36 visibility: hidden;
37}
38.text-hide {
39 .text-hide();
40}
41
42
43// Hide from screenreaders and browsers
44//
45// Credit: HTML5 Boilerplate
46
47.hidden {
48 display: none !important;
49}
50
51
52// For Affix plugin
53// -------------------------
54
55.affix {
56 position: fixed;
57}
Note: See TracBrowser for help on using the repository browser.