Skip to content

Commit

Permalink
4.0 (testing)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jul 27, 2020
1 parent e7f11cc commit edd4b0a
Show file tree
Hide file tree
Showing 68 changed files with 5,048 additions and 296 deletions.
75 changes: 3 additions & 72 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,75 +1,6 @@
# Changelog

## 1.0.1 (July 10, 2019)
## 4.0.0 (July 27, 2020)

### Added
- Added new translations

## 1.0.0 (April 13, 2016)

### Changed
- Changed article divider

## 0.11.1 (April 7, 2016)

### Added
- Added page title fallback if no logo is picked

### Changed
- Made the logo height responsive

## 0.11.0 (February 24, 2016)

### Changed
- Use view.init event for theme params

### Removed
- Removed system messages

## 0.10.1 (February 24, 2016)

### Added
- Added optional parallax effect for hero image
- Added style option for top, main and bottom sections
- Added optional off-canvas logo
- Added translations

## 0.10.0 (December 15, 2015)

### Changed
- Switched to Vuejs 1.0
- Nicer code and blockquotes style
- Better block-large padding for large screens
- Updated button font-size and transition
- Optimized close button and added better support for modal dialog blank
- Added tab style for contrast
- Rounded comment avatars
- Smaller badges
- Minor tweaks for alert, dropdown and icon

### Removed
- Removed text centering in footer

## 0.9.3 (October 16, 2015)

### Fixed
- Fixed missing CSS folder

## 0.9.2 (October 14, 2015)

### Added
- Added missing meta data in post view

### Fixed
- Fixed widget html class
- Fixed date conversion to ISO8601 in blog views

## 0.9.1 (September 14, 2015)

### Fixed
- Fixed undefined index `hero`
- Fixed blog markup

## 0.9.0 (September 10, 2015)

- Initial release
### New
- Upgrade to Dolphin UI (2.0) components
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "linuxhub/v3",
"name": "linuxhub/v4",
"type": "pagekit-theme",
"version": "3.0.1",
"title": "v3",
"version": "4.0.0",
"title": "v4",
"description": "linuxhub's default theme.",
"license": "MIT",
"copyright": "(c) 2019 linuxhub",
Expand Down
60 changes: 29 additions & 31 deletions css/colors/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #383a42
padding: .5em 1rem;
color: #383a42;
}
.hljs {
background: #fafafa
Expand Down Expand Up @@ -78,40 +78,40 @@
}
#search-form,
blockquote,
header,
header form>div article,
main>article,
main>article>span+div,
main>div>article,
main>div>ol:last-child>li a:hover,
pre,
section[style]>div>fieldset>a,
header form>div article {
background-color: #fff
header>div>form>input {
background-color: #fff;
}
button,
input[type="submit"],
input[type=submit],
section>div>fieldset>a {
background-color: #3a3a3a
}
:not(pre)>code,
button,
input[type="submit"],
section[style]>div>p,
input[type=submit],
section>div>fieldset>a,
section[style]>div>h2,
:not(pre)>code {
section[style]>div>p {
color: #fff
}
pre {
border-color: #e5e5e5
}
article>section:nth-child(odd),
body,
article>section:nth-child(odd),
footer,
html::-webkit-scrollbar-track,
input,
select,
textarea,
html::-webkit-scrollbar-track {
background-color: #f5f5f5
textarea {
background-color: #f9f9f9;
}
footer,
header a,
Expand All @@ -122,28 +122,27 @@
}
.uk-search-page article,
blockquote,
main>article {
main>article,
main>div>article {
border-color: #e4e4e4
}
header,
header>nav,
main>div>article,
main>div>ol:last-child>li a:hover {
border-color: #e5e5e5
}
footer li>a,
header>div>form>.icon,
main>aside>ul>li>a {
opacity: 0.7;
opacity: .7;
color: #2c2c2c
}
footer li:hover>a,
main>aside>ul>li>a.active,
main>aside>ul>li:hover a {
main>aside>ul>li:hover a,
main>aside>ul>li>a.active {
opacity: 1
}
input:active,
input:focus,
input:not([type="search"]):active,
input:not([type="search"]):focus,
select:active,
select:focus,
textarea:active,
Expand All @@ -161,8 +160,8 @@
textarea {
color: #151515
}
input:active,
input:focus,
input:not([type="search"]):active,
input:not([type="search"]):focus,
select:active,
select:focus,
textarea:active,
Expand All @@ -188,11 +187,10 @@
color: #2a3b58
}
:not(pre)>code {
background: #2DBFBD
background: #2dbfbd
}
a,
header>div>ul>li.selected a,
header>div>ul>li:hover>a,
header>div>ul>li:hover>a {
color: #fe1804
}
Expand All @@ -207,28 +205,28 @@
background-color: #fff6a4
}
header form>div {
background-color: #e8e9ecf7;
background-color: #f9f9f9db;
padding: 2rem 0;
}

::-webkit-scrollbar-track {
border: 7px solid #f5f5f5
}

::-webkit-scrollbar-track:hover {
background-color: #ececec
}

::-webkit-scrollbar-thumb {
background-color: #616161
}

::-webkit-scrollbar-thumb:window-inactive {
background-color: #949699
}

::-webkit-scrollbar-thumb:hover {
background-color: #191919
}
}

@media screen and (max-width:46.5625em) {
body {
background-color: #fff;
}
}
Loading

0 comments on commit edd4b0a

Please sign in to comment.