mirror of
https://github.com/jenil/chota.git
synced 2023-08-10 21:13:07 +03:00
Merge pull request #38 from yne/master
Add `.is-round`, `.is-pointer` and `.hide-pr`
This commit is contained in:
commit
5a9c44e9a9
11
dist/chota.css
vendored
11
dist/chota.css
vendored
@ -927,6 +927,12 @@ button:disabled:hover {
|
||||
.is-marginless {
|
||||
margin: 0 !important;
|
||||
}
|
||||
.is-pointer {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
.is-rounded {
|
||||
border-radius: 100%;
|
||||
}
|
||||
.clearfix {
|
||||
content: "";
|
||||
display: table;
|
||||
@ -955,3 +961,8 @@ button:disabled:hover {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
.hide-pr {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
2
dist/chota.min.css
vendored
2
dist/chota.min.css
vendored
File diff suppressed because one or more lines are too long
@ -39,11 +39,13 @@
|
||||
<li><code>is-fixed</code> - fixed positioned element</li>
|
||||
<li><code>is-paddingless</code> - removes any padding</li>
|
||||
<li><code>is-marginless</code> - removes any margin</li>
|
||||
<li><code>is-round</code> - make the element round</li>
|
||||
<li><code>clearfix</code> - clears the floats</li>
|
||||
<li><code>is-hidden</code> - hides the element completely</li>
|
||||
<li><code>hide-xs</code> - hides the element for screens <600px</li>
|
||||
<li><code>hide-sm</code> - hides the element for screens >=600px and <900px</li>
|
||||
<li><code>hide-md</code> - hides the element for screens >=900px and <1200px</li>
|
||||
<li><code>hide-lg</code> - hides the element for screens >=1200px</li>
|
||||
<li><code>hide-pr</code> - hides the element for printing</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "chota",
|
||||
"version": "0.6.2",
|
||||
"version": "0.6.3",
|
||||
"description": "A really small CSS framework",
|
||||
"main": "dist/chota.min.css",
|
||||
"scripts": {
|
||||
|
@ -158,6 +158,14 @@
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.is-pointer {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.is-rounded {
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
content: "";
|
||||
display: table;
|
||||
@ -190,4 +198,10 @@
|
||||
.hide-lg {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.hide-pr {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user