8000 Update · css-ui/css-ui.github.io@caba4b1 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 5, 2019. It is now read-only.

Commit caba4b1

Browse files
committed
Update
1 parent 0c1a79c commit caba4b1

10 files changed

+38
-12
lines changed

dashboard/full.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<link rel="stylesheet" href="../www/css/cssui.min.css">
1010
<link rel="stylesheet" href="../www/css/cssui-menu-light.min.css">
1111
<link rel="stylesheet" href="../www/css/cssui-dropdown-light.min.css">
12+
<link rel="stylesheet" href="../www/css/cssui-dashboard.min.css">
1213
<link rel="stylesheet" href="../www/css/style.css">
< 8000 div aria-hidden="true" class="position-absolute top-0 d-flex user-select-none DiffLineTableCellParts-module__comment-indicator--eI0hb">
1314
</head>
1415
<body>
@@ -140,6 +141,12 @@
140141
<!-- content -->
141142
<div class="content">
142143
<div class="box style">
144+
<p class="message info">
145+
The form was sent successfully.
146+
<span class="close-message">
147+
<i class="fa fa-times" aria-hidden="true"></i>
148+
</span>
149+
</p>
143150
<h4>Sample forms</h4>
144151
<form>
145152
<fieldset>
@@ -346,6 +353,11 @@ <h4>Sample paragraphs</h4>
346353
nanobar.go(100);
347354

348355
var ps = new PerfectScrollbar('.scrollbar');
356+
357+
// close messages
358+
$('.close-message').on('click', function() {
359+
$(this).parent().fadeOut('slow');
360+
});
349361
});
350362
</script>
351363
</body>

dashboard/simple.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<link rel="stylesheet" href="../www/css/cssui.min.css">
1010
<link rel="stylesheet" href="../www/css/cssui-menu-light.min.css">
1111
<link rel="stylesheet" href="../www/css/cssui-dropdown-light.min.css">
12+
<link rel="stylesheet" href="../www/css/cssui-dashboard.min.css">
1213
<link rel="stylesheet" href="../www/css/style.css">
1314
</head>
1415
<body>

gruntfile.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ module.exports = function(grunt) {
1515
'node_modules/css-ui-tooltip/css/style.tooltip.css',
1616
'node_modules/css-ui-tooltip/css/style.tooltip.theme.css',
1717
'node_modules/css-ui-table/css/style.tables.css',
18-
'node_modules/css-ui-modal-box/css/style.modal.box.css',
19-
'node_modules/css-ui-dashboard/css/style.dashboard.css'
18+
'node_modules/css-ui-modal-box/css/style.modal.box.css'
2019
]},
2120
{'www/css/cssui-menu-light.min.css': [
2221
'node_modules/css-ui-responsive-menu/css/style.menu.light.css'
@@ -30,8 +29,11 @@ module.exports = function(grunt) {
3029
{'www/css/cssui-dropdown-dark.min.css': [
3130
'node_modules/css-ui-dropdown-menu/css/style.dropdown.dark.css'
3231
]},
33-
{'www/css/cssui-sing-in.min.css': [
32+
{'www/css/cssui-login.min.css': [
3433
'node_modules/css-ui-sign-in/css/style.sign.in.css'
34+
]},
35+
{'www/css/cssui-dashboard.min.css': [
36+
'node_modules/css-ui-dashboard/css/style.dashboard.css'
3537
]}
3638
]
3739
}

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "CSS UI - Demo.",
55
"main": "gruntfile.js",
66
"dependencies": {
7-
"css-ui-dashboard": "^1.0.9",
7+
"css-ui-dashboard": "^1.1.1",
88
"css-ui-dropdown-menu": "^1.2.1",
99
"css-ui-modal-box": "^1.0.7",
1010
"css-ui-responsive-menu": "^3.1.5",

sign.in/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- css -->
99
<l 9E88 ink rel="stylesheet" href="../www/css/cssui.min.css">
10-
<link rel="stylesheet" href="../www/css/cssui-sing-in.min.css">
10+
<link rel="stylesheet" href="../www/css/cssui-login.min.css">
1111
<style>
1212
body {
1313
font-family: 'Open Sans', sans-serif;

www/css/cssui-dashboard.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

www/css/cssui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/css/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
========================================================================== */
44
body {
55
font-family: 'Open Sans', sans-serif;
6+
height: 100%;
67
}
78

89
/* nanobar
@@ -20,3 +21,12 @@ body {
2021
transition: height .3s;
2122
width: 0;
2223
}
24+
25+
/* message
26+
========================================================================== */
27+
.close-message {
28+
float: right;
29+
cursor: pointer;
30+
position: relative;
31+
top: -2px;
32+
}

0 commit comments

Comments
 (0)
0