Skip to content

Commit a44fbc0

Browse files
committed
Version 0.3.5
1 parent 3921938 commit a44fbc0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1479
-1338
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cd "$(dirname $0)/"
55

66
# copyright Information
7-
version="0.3.4"
7+
version="0.3.5"
88
copyright="/*! UI Schema v$version | (c) 2015 Arxitics | MIT license */"
99
echo "current version: v$version"
1010

css/base.css

+6-3
Original file line numberDiff line numberDiff line change
@@ -319,12 +319,15 @@ input::-moz-focus-inner {
319319
}
320320

321321
/**
322-
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
323-
* the UA stylesheet.
322+
* 1. Remove rounded corners on input form on iOS, iPad, iPhone.
323+
* 2. Address Firefox 4+ setting `line-height` on `input` using `!important` in
324+
* the UA stylesheet.
324325
*/
325326

326327
input {
327-
line-height: normal;
328+
-webkit-appearance: none; /* 1 */
329+
-webkit-border-radius: 0; /* 1 */
330+
line-height: normal; /* 2 */
328331
}
329332

330333
/**

css/import.css

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* UI Schema v0.3.4 (https://github.com/arxitics/ui-schema)
2+
* UI Schema v0.3.5 (https://github.com/arxitics/ui-schema)
33
* Copyright 2015 Arxitics <help@arxitics.com>
44
* Licensed under MIT (https://github.com/arxitics/ui-schema/blob/master/LICENSE)
55
*/
@@ -106,6 +106,12 @@
106106

107107
@import "print.css";
108108

109+
/**
110+
* Pages.
111+
*/
112+
113+
@import "pages.css";
114+
109115
/**
110116
* Utilities.
111117
*/

css/pages.css

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*!
2+
* Pages
3+
*/
4+
5+
.ui-a4-paper {
6+
height: 297mm;
7+
width: 210mm;
8+
}
9+
10+
.ui-a5-paper {
11+
height: 210mm;
12+
width: 148mm;
13+
}
14+
15+
.ui-b5-paper {
16+
height: 250mm;
17+
width: 176mm;
18+
}
19+
20+
.ui-letter-paper {
21+
height: 279.4mm;
22+
width: 215.9mm;
23+
}
24+
25+
.ui-page-wrapper {
26+
padding: 10mm 16.18mm;
27+
}

css/print.css

+3
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@
66
.ui-content-jumbotron {
77
border: 1px solid #ccc;
88
}
9+
.ui-print-hidden {
10+
display: none;
11+
}
912
}

css/typography.css

+4
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@
8686
text-align: justify;
8787
}
8888

89+
.ui-text-indent {
90+
text-indent: 2em;
91+
}
92+
8993
.ui-text-left {
9094
text-align: left;
9195
}

dist/prism-0.0.1.min.css

-2
This file was deleted.

dist/prism-0.0.1.min.js

-6
This file was deleted.

dist/prism-0.0.2.min.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)