Skip to content

Commit 17bfbdd

Browse files
committed
delete Useful Links and update Readme, fix some bugs
1 parent 2b796ad commit 17bfbdd

File tree

6 files changed

+67
-35
lines changed

6 files changed

+67
-35
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,32 @@ Thanks for supporting our website and enjoy!
3232

3333
## Typeface
3434
Flat UI Free is made using the Lato typeface, which can be downloaded for free here: http://www.google.com/webfonts/specimen/Lato
35+
36+
##Useful Links (How To)
37+
How to Use UI Kits, Beginners Video Tips: [http://designmodo.com/how-to-use/](http://designmodo.com/how-to-use/)
38+
UI Kit Benefits: [http://designmodo.com/benefits/](http://designmodo.com/benefits/)
39+
Create a Website using UI Packs (PSD to HTML) – Day 1: [http://designmodo.com/create-website-day-1](http://designmodo.com/create-website-day-1)
40+
Create a Website using UI Packs (PSD to HTML) – Day 2: [http://designmodo.com/create-website-day-2](http://designmodo.com/create-website-day-2)
41+
Create a Website using UI Packs (PSD to HTML) – Day 3: [http://designmodo.com/create-website-day-3](http://designmodo.com/create-website-day-3)
42+
Create a Website Design using The Bricks UI: [http://designmodo.com/website-design-bricks-ui/](http://designmodo.com/website-design-bricks-ui/)
43+
What is UI Kit and Why You Should Use it: [http://designmodo.com/ui-kit-use](http://designmodo.com/ui-kit-use)
44+
How Companies can Save Time and Money Using UI Kits: [http://designmodo.com/save-time-money-using-ui-kits](http://designmodo.com/save-time-money-using-ui-kits)
45+
UI Kits for Developers – Prototyping and Homemade Design: [http://designmodo.com/ui-kits-developers](http://designmodo.com/ui-kits-developers)
46+
47+
Our Shop:
48+
[http://designmodo.com/shop/](http://designmodo.com/shop/)
49+
50+
Tutorials:
51+
[http://designmodo.com/tutorials/](http://designmodo.com/tutorials/)
52+
53+
Freebies:
54+
[http://designmodo.com/freebies/](http://designmodo.com/freebies/)
55+
56+
Affiliate Program (earn money):
57+
[http://designmodo.com/affiliates/](http://designmodo.com/affiliates/)
58+
59+
Social Media:
60+
Twitter: [http://www.twitter.com/designmodo](http://www.twitter.com/designmodo)
61+
Facebook: [http://www.facebook.com/designmodo](http://www.facebook.com/designmodo)
62+
RSS: [http://feeds.feedburner.com/designmodo](http://feeds.feedburner.com/designmodo)
63+
Google+: [https://www.google.com/+DesignModo](https://www.google.com/+DesignModo)

Useful Links! (How To)

Lines changed: 0 additions & 30 deletions
This file was deleted.

css/flat-ui.css

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1325,6 +1325,25 @@ input[type="color"]:focus,
13251325
-moz-box-shadow: none;
13261326
box-shadow: none;
13271327
}
1328+
.row-fluid textarea,
1329+
.row-fluid input[type="text"],
1330+
.row-fluid input[type="password"],
1331+
.row-fluid input[type="datetime"],
1332+
.row-fluid input[type="datetime-local"],
1333+
.row-fluid input[type="date"],
1334+
.row-fluid input[type="month"],
1335+
.row-fluid input[type="time"],
1336+
.row-fluid input[type="week"],
1337+
.row-fluid input[type="number"],
1338+
.row-fluid input[type="email"],
1339+
.row-fluid input[type="url"],
1340+
.row-fluid input[type="search"],
1341+
.row-fluid input[type="tel"],
1342+
.row-fluid input[type="color"],
1343+
.row-fluid .uneditable-input {
1344+
height: 41px;
1345+
width: 100%;
1346+
}
13281347
textarea.flat,
13291348
input[type="text"].flat,
13301349
input[type="password"].flat,
@@ -1639,8 +1658,12 @@ textarea {
16391658
padding: 5px 11px;
16401659
text-indent: 0;
16411660
}
1661+
.row-fluid textarea {
1662+
height: auto;
1663+
width: 100% !important;
1664+
}
16421665
textarea[class*="span"] {
1643-
width: 100%;
1666+
width: 100% !important;
16441667
-webkit-box-sizing: border-box;
16451668
-moz-box-sizing: border-box;
16461669
box-sizing: border-box;
@@ -3233,7 +3256,7 @@ body.vjs-full-window {
32333256
.vjs-rewind-control div {
32343257
width: 19px;
32353258
height: 16px;
3236-
background: url(../images/video/video-js.png);
3259+
background: none transparent;
32373260
margin: .5em auto 0;
32383261
}
32393262
.vjs-mute-control {

js/application.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ String.prototype.repeat = function(num) {
5656
});
5757

5858
// Disable link clicks to prevent page scrolling
59-
$('a[href="#fakelink""]').on('click', function (e) {
59+
$('a[href="#fakelink"]').on('click', function (e) {
6060
e.preventDefault();
6161
});
6262

less/modules/input.less

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ input[type="color"],
3939
border-color: @firm;
4040
.box-shadow(none);
4141
}
42+
43+
.row-fluid & {
44+
height: 41px;
45+
width: 100%;
46+
}
4247

4348
// Flat (without border)
4449
&.flat {
@@ -158,8 +163,13 @@ textarea {
158163
line-height: 24px;
159164
padding: 5px 11px;
160165
text-indent: 0;
166+
167+
.row-fluid & {
168+
height: auto;
169+
width: 100% !important;
170+
}
161171
}
162172
textarea[class*="span"] {
163-
width: 100%;
173+
width: 100% !important;
164174
.box-sizing(border-box);
165175
}

less/modules/video.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ body.vjs-full-window {
227227
div {
228228
width: 19px;
229229
height: 16px;
230-
background: url(../images/video/video-js.png);
230+
background: none transparent;
231231
margin: .5em auto 0;
232232
}
233233
}

0 commit comments

Comments
 (0)