suppression du fichier icons.css
quasiment jamais utilisé en pratique, inutile dans un "framework"
This commit is contained in:
parent
e0a176794c
commit
5e6bacda74
16 changed files with 30 additions and 347 deletions
55
less/_09-misc.less
Normal file
55
less/_09-misc.less
Normal file
|
@ -0,0 +1,55 @@
|
|||
/* ----------------------------- */
|
||||
/* ==misc rules */
|
||||
/* ----------------------------- */
|
||||
|
||||
/* styling skip links */
|
||||
.skip-links {
|
||||
position: absolute;
|
||||
|
||||
& a {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
padding: 0.5em;
|
||||
background: black;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
|
||||
&:focus {
|
||||
position: static;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// hyphens on small screens
|
||||
@media (max-width: @small-screen) {
|
||||
/* you shall not pass */
|
||||
div,
|
||||
textarea,
|
||||
table,
|
||||
td,
|
||||
th,
|
||||
code,
|
||||
pre,
|
||||
samp {
|
||||
word-wrap: break-word;
|
||||
hyphens: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* Google Gmap3 bug fix on images */
|
||||
.gm-style img {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
:not(.gm-style) img {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.gm-style img,
|
||||
.gmnoscreen img,
|
||||
.gmnoprint img {
|
||||
max-width: none !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue