Skip to content

Commit b349752

Browse files
committed
Fix merge conflicts
2 parents d31dfd4 + 2d9e181 commit b349752

File tree

12 files changed

+88
-28
lines changed

12 files changed

+88
-28
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ __MACOSX/
99

1010
# Sass cache
1111
/.sass-cache
12+
13+
# Log files
14+
*.log
15+
*.log.*

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ Concise is a lightweight, front-end framework that provides a number of great fe
88

99
It's easy to get started with Concise:
1010

11-
- [Download the latest release](https://github.com/ConciseCSS/concise.css/archive/v3.0.0.zip)
11+
- [Download the latest release (SASS Included)](https://github.com/ConciseCSS/concise.css/releases/download/v3.1.1/concise-v3.1.1-source.zip)
1212
- Clone the repo: `git clone https://github.com/ConciseCSS/concise.css.git`
1313
- Install with [Bower](http://bower.io/): `bower install concise`
1414
- Install with [NPM](https://www.npmjs.com/): `npm install concise.css`
1515

16+
**Note:** If you just want the CSS files, please refer to the downloads section for each release: [https://github.com/ConciseCSS/concise.css/releases](https://github.com/ConciseCSS/concise.css/releases)
17+
1618
After you download or install the package, [check out our documentation](http://concisecss.com/documentation) to get up and running.
1719

1820
### Building the project

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "concise",
33
"description": "A front-end framework written in SASS that's lightweight, and easy-to-use.",
4-
"version": "3.1.1",
4+
"version": "3.2.0",
55
"ignore": [
66
".gitignore",
77
".editorconfig",

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@
1515
"authors": [
1616
{
1717
"name": "Keenan Payne",
18-
"email": "contact@keenanpayne.com"
18+
"email": "contact@keenanpayne.com",
19+
"homepage": "http://keenanpayne.com"
20+
},
21+
{
22+
"name": "James Kolce",
23+
"homepage": "http://jameskolce.com"
1924
}
2025
],
2126
"support": {

dist/concise.css

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,20 @@ select,
8686
textarea {
8787
cursor: initial; }
8888

89+
*[dir="rl;"] {
90+
direction: rtl;
91+
unicode-bidi: embed; }
92+
93+
bdo[dir="ltr"],
94+
bdo[dir="rtl"] {
95+
unicode-bidi: bidi-override; }
96+
97+
bdo[dir="ltr"] {
98+
direction: ltr; }
99+
100+
bdo[dir="rtl"] {
101+
direction: rtl; }
102+
89103
hr {
90104
border: 0;
91105
border-top: 1px solid #e0e0e0;
@@ -244,7 +258,7 @@ button, input[type="submit"],
244258
form [row] {
245259
margin-bottom: 24px; } }
246260

247-
input,
261+
input:not([type="submit"]),
248262
select,
249263
textarea {
250264
border: 1px solid #e0e0e0;
@@ -254,29 +268,25 @@ textarea {
254268
padding: 0 .75em;
255269
transition: 150ms;
256270
width: 100%; }
257-
input:focus,
271+
input:not([type="submit"]):focus,
258272
select:focus,
259273
textarea:focus {
260274
border-color: #74cbe8;
261275
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(69, 145, 170, 0.5);
262276
outline: none; }
263-
input[disabled],
277+
input:not([type="submit"])[disabled],
264278
select[disabled],
265279
textarea[disabled] {
266280
background-color: #f5f5f5;
267281
cursor: not-allowed; }
268282

269-
input {
283+
input:not([type="submit"]) {
270284
line-height: normal;
271285
min-height: 24px; }
272-
input[type="checkbox"]:focus, input[type="radio"]:focus, input[type="range"]:focus, input[type="file"]:focus, input[type="color"]:focus, input[type="submit"]:focus {
286+
input:not([type="submit"])[type="checkbox"]:focus, input:not([type="submit"])[type="radio"]:focus, input:not([type="submit"])[type="range"]:focus, input:not([type="submit"])[type="file"]:focus, input:not([type="submit"])[type="color"]:focus, input:not([type="submit"])[type="submit"]:focus {
273287
border-color: transparent;
274288
box-shadow: none;
275289
outline: none; }
276-
input[type="submit"] {
277-
line-height: normal; }
278-
input[type="submit"].button {
279-
border-radius: 0; }
280290

281291
label {
282292
display: block;
@@ -1653,6 +1663,16 @@ ol.dropdown-content {
16531663
.modal-close:hover, .modal-close:focus {
16541664
text-decoration: none; }
16551665

1666+
.modal:target .modal-close--background {
1667+
display: block;
1668+
height: 100%;
1669+
pointer-events: all;
1670+
position: absolute;
1671+
width: 100%; }
1672+
.modal:target .modal-close--background:hover {
1673+
border-bottom: none;
1674+
text-decoration: none; }
1675+
16561676
@media (min-width: 48em) {
16571677
.modal--small .modal-container {
16581678
width: 360px; } }

dist/concise.min.css

Lines changed: 0 additions & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "concise.css",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"description": "A lightweight front-end framework that provides functionality without the bloat.",
55
"license": "MIT",
66
"keywords": [
@@ -21,13 +21,13 @@
2121
"url": "https://github.com/ConciseCSS/concise.css"
2222
},
2323
"engines": {
24-
"node": "<=4.2.1"
24+
"node": "<=4.2.3"
2525
},
2626
"devDependencies": {
27-
"autoprefixer": "^6.0.3",
27+
"autoprefixer": "^6.1.2",
2828
"cssmin": "^0.4.3",
29-
"node-sass": "^3.3.3",
30-
"postcss-cli": "^2.2.0",
29+
"node-sass": "^3.4.2",
30+
"postcss-cli": "^2.3.2",
3131
"stylestats": "^6.0.0",
3232
"watch": "^0.16.0"
3333
},

src/addons/concise-ui/components/_modals.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,19 @@
7777
&:focus { text-decoration: none; }
7878
}
7979

80+
.modal:target .modal-close--background {
81+
display: block;
82+
height: 100%;
83+
pointer-events: all;
84+
position: absolute;
85+
width: 100%;
86+
87+
&:hover {
88+
border-bottom: none;
89+
text-decoration: none;
90+
}
91+
}
92+
8093

8194
//
8295
// Modifiers

src/core/layout/_base.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,19 @@ input,
105105
select,
106106
textarea { cursor: initial; }
107107

108+
// RTL and LTR language support
109+
*[dir="rl;"] {
110+
direction: rtl;
111+
unicode-bidi: embed;
112+
}
113+
114+
bdo[dir="ltr"],
115+
bdo[dir="rtl"] { unicode-bidi: bidi-override; }
116+
117+
bdo[dir="ltr"] { direction: ltr; }
118+
119+
bdo[dir="rtl"] { direction: rtl; }
120+
108121
// Horizontal rule
109122
hr {
110123
border: 0;

src/core/layout/_forms.scss

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ form [row] {
99
}
1010
}
1111

12-
input,
12+
input:not([type="submit"]),
1313
select,
1414
textarea {
1515
border: 1px solid getColor(base, lines);
@@ -33,7 +33,7 @@ textarea {
3333
}
3434
}
3535

36-
input {
36+
input:not([type="submit"]) {
3737
line-height: normal;
3838
min-height: unitSize(3);
3939

@@ -50,14 +50,10 @@ input {
5050
outline: none;
5151
}
5252
}
53+
}
5354

54-
&[type="submit"] {
55-
@extend button;
56-
57-
line-height: normal;
58-
59-
&.button { border-radius: 0; }
60-
}
55+
input[type="submit"] {
56+
@extend button;
6157
}
6258

6359
label {

0 commit comments

Comments
 (0)