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

Commit 3146cba

Browse files
committed
Update
1 parent 2541af4 commit 3146cba

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/css/style.sidebar.css renamed to src/css/style.responsive.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ body {
1414
}
1515

1616
/*
17-
responsive menu style
17+
responsive menu
1818
*/
1919
.nav .click {
2020
cursor: pointer;
@@ -34,7 +34,7 @@ body {
3434
}
3535

3636
.nav .responsive { display: none; }
37-
.nav .expand { display: block !important; }
37+
.nav .expand-responsive { display: block !important; }
3838

3939
/*
4040
sidebar
@@ -113,7 +113,7 @@ body {
113113
top: 0;
114114
}
115115

116-
.content {
116+
.wrapping {
117117
margin-left: 230px;
118118
}
119119

File renamed without changes.

src/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>CSS UI - Responsive menu</title>
99

1010
<!-- CSS styles -->
11-
<link rel="stylesheet" href="css/style.sidebar.css">
11+
<link rel="stylesheet" href="css/style.responsive.css">
1212
<!-- <link rel="stylesheet" href="css/style.sidebar.dark.css">-->
1313

1414
</head>
@@ -75,7 +75,7 @@
7575
</div>
7676

7777
<!-- content -->
78-
<div class="content"></div>
78+
<div class="wrapping"></div>
7979

8080
<!-- javascript libraries and plugins -->
8181
<script src="js/jquery.min.js"></script>

src/js/jquery.responsive.menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
*/
55
$(function() {
66
$('.nav .click').click(function() {
7-
$('.nav .responsive').toggleClass('expand');
7+
$('.nav .responsive').toggleClass('expand-responsive');
88
});
99
});

0 commit comments

Comments
 (0)