PluginProbe
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager / 1.2.1
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager v1.2.1
10.56 1.2.1 10 10.1 10.2 10.3 10.31 10.32 10.33 10.34 10.50 10.51 10.52 10.53 10.55 9.0 9.0.1 9.4 trunk 1.0.0 1.1 1.2
easy-code-manager / framework / css / bootstrap / less / close.less

close.less in FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager 1.2.1, at framework/css/bootstrap/less/close.less

35 lines 764 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 //
2 // Close icons
3 // --------------------------------------------------
4
5
6 .close {
7 float: right;
8 font-size: (@font-size-base * 1.5);
9 font-weight: @close-font-weight;
10 line-height: 1;
11 color: @close-color;
12 text-shadow: @close-text-shadow;
13 .opacity(.2);
14
15 &:hover,
16 &:focus {
17 color: @close-color;
18 text-decoration: none;
19 cursor: pointer;
20 .opacity(.5);
21 }
22
23 // Additional properties for button version
24 // iOS requires the button element instead of an anchor tag.
25 // If you want the anchor version, it requires `href="#"`.
26 // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
27 button& {
28 padding: 0;
29 cursor: pointer;
30 background: transparent;
31 border: 0;
32 -webkit-appearance: none;
33 }
34 }
35