Skip to content

Commit

Permalink
issue/stick-icon-is-broken-in-pc-version: Adjust icon (paper clip) fo…
Browse files Browse the repository at this point in the history
…r sticky posts
  • Loading branch information
flaubert-dev committed Nov 23, 2024
1 parent a2ad438 commit c523217
Show file tree
Hide file tree
Showing 6 changed files with 120 additions and 106 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ Really Simple is a theme for bloggers and writers who need a ultra light and fas
- [Monster Widget](https://wordpress.org/plugins/monster-widget/)

> Validation
- [Theme Unit Test](https://codex.wordpress.org/Theme_Unit_Test)
- [HTML](https://validator.w3.org/#validate_by_upload+with_options)
- [CSS](https://jigsaw.w3.org/css-validator/#validate_by_upload)
- [Theme Unit Test](https://codex.wordpress.org/Theme_Unit_Test)

## Details / Suggestions

Expand Down
13 changes: 10 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== Really Simple ===
Requires at least: WordPress 5.3
Tested up to: WordPress 6.2
Tested up to: WordPress 6.7
Requires PHP: 7.0
Version: 1.3.0
Stable tag: 1.3.0
Version: 1.3.1
Stable tag: 1.3.1
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -66,6 +66,11 @@ Source:

== Changelog ==

= 1.3.1 - November 23 2024 =
- Fixed: Stick icon paperclip
- Updated: readme.txt
- Updated: README.md

= 1.3.0 - July 17 2023 =
- New: Footer (Date, Website title, Theme URL & Licence URL)
- New: Function PX to REM (Sass)
Expand Down Expand Up @@ -135,5 +140,7 @@ Source:

== Credits ==

* This amazing teacher helped change my life with WordPress https://www.linkedin.com/in/marceloxvieira/
* Based on Underscores https://underscores.me/, (C) 2012-2021 Automattic, Inc., [GPLv3 or later](https://www.gnu.org/licenses/gpl-3.0.html)
* normalize.css https://necolas.github.io/normalize.css/, (C) 2012-2021 Nicolas Gallagher and Jonathan Neal, [MIT](https://opensource.org/licenses/MIT)
* Heroicons SVGs https://heroicons.com/
17 changes: 11 additions & 6 deletions sass/_2_components/_1_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -282,20 +282,25 @@
color: $blue-dark;
}

/* paperclip svg */
.paperclip {
display: none;
}

/* sticky post */
.sticky {
background: $gray-5;
position: relative;
}

.sticky .card-body::after {
/* paperclip emoji */
content: "\1F4CE";
.sticky .paperclip {
/* paperclip svg */
color: $black;
font-size: 1.1rem;
display: block;
width: 20px;
position: absolute;
right: 7px;
top: 2px;
right: 8px;
top: 7px;
}

.updated:not(.published) {
Expand Down
4 changes: 2 additions & 2 deletions sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Theme URI: https://github.com/flaubert-dev/really-simple-theme#really-simple-the
Author: Flaubert Henriques
Author URI: https://profiles.wordpress.org/flauberthenriques/
Description: Really Simple is a theme for bloggers and writers who need a ultra light and fast theme. The theme focuses on simplicity and loading speed. Yes, Really Simple Theme is also fully AMP compatible. Check the >> readme.txt << file and leave the sidebar perfect after WordPress 5.8 update.
Version: 1.3.0
Version: 1.3.1
Requires at least: WordPress 5.3
Tested up to: WordPress 6.2
Tested up to: WordPress 6.7
Requires PHP: 7.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
Loading

0 comments on commit c523217

Please sign in to comment.