Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LBDesign Button Shortcode
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
plugins
LBDesign Button Shortcode
Commits
91cafd03
Commit
91cafd03
authored
8 years ago
by
Lauren
Browse files
Options
Downloads
Patches
Plain Diff
Edits and updates to version number and removed extra unneeded files
parent
635bb956
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
css/lbdesign_button_shortcode.css.map
+0
-7
0 additions, 7 deletions
css/lbdesign_button_shortcode.css.map
readme.txt
+1
-1
1 addition, 1 deletion
readme.txt
sass/lbdesign_button_shortcode.scss
+0
-94
0 additions, 94 deletions
sass/lbdesign_button_shortcode.scss
with
1 addition
and
102 deletions
css/lbdesign_button_shortcode.css.map
deleted
100644 → 0
+
0
−
7
View file @
635bb956
{
"version": 3,
"mappings": ";AAQA;;;;uBAIwB;EACtB,eAAe,EAAE,IAAI;;AAEvB,gBAAiB;EACb,OAAO,EAAE,gBAAgB;EACzB,OAAO,EAAE,YAAY;EACrB,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,OAAO;EACpB,aAAa,EAAE,IAAI;EAEnB,8CACQ;IACJ,UAAU,EAAE,OAAiB;IAC7B,KAAK,EAAE,IAAI;;;AAKnB,eAAgB;EACZ,SAAS,EAAE,GAAG;;AAElB,eAAgB;EACZ,SAAS,EAAE,IAAI;;AAEnB,gBAAiB;EACf,SAAS,EAAE,IAAI;;;AAIjB,iBAAkB;EACd,UAAU,EA1CJ,OAAO;EA2Cb,gDACQ;IACJ,UAAU,EAAE,OAAqB;;AAGzC,iBAAkB;EACd,UAAU,EAhDJ,OAAO;EAiDb,gDACQ;IACJ,UAAU,EAAE,OAAqB;;AAGzC,mBAAoB;EAClB,UAAU,EApDA,OAAO;EAqDjB,oDACQ;IACN,UAAU,EAAE,OAAuB;;AAGvC,cAAe;EACX,UAAU,EA7DP,OAAO;EA8DV,0CACQ;IACJ,UAAU,EAAE,OAAkB;;AAGtC,gBAAiB;EACb,UAAU,EAnEL,OAAO;EAoEZ,8CACQ;IACJ,UAAU,EAAE,OAAoB;;;AAMxC,iBAAkB;EAChB,aAAa,EAAE,QAAQ;;AAEzB,cAAe;EACb,aAAa,EAAE,GAAG;;AAEpB,eAAgB;EACd,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;;AAEpB,oBAAqB;EACjB,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM",
"sources": ["../sass/lbdesign_button_shortcode.scss"],
"names": [],
"file": "lbdesign_button_shortcode.css"
}
This diff is collapsed.
Click to expand it.
readme.txt
+
1
−
1
View file @
91cafd03
...
...
@@ -2,7 +2,7 @@
Contributors: lepittenger
Tags: shortcode
Requires at least: 3.0.1
Tested up to: 4.
5
Tested up to: 4.
6.1
Stable tag: 1.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
...
...
This diff is collapsed.
Click to expand it.
sass/lbdesign_button_shortcode.scss
deleted
100644 → 0
+
0
−
94
View file @
635bb956
$default
:
#777
;
$primary
:
#226CFF
;
$warning
:
#FF2247
;
$info
:
#FFDA22
;
$action
:
#4FBE00
;
$highlight
:
#FFB624
;
/* DEFAULT button shortcode styles */
.lbdesign_button
,
.lbdesign_button
:hover
,
.lbdesign_button
:focus
,
.lbdesign_button
:active
,
.lbdesign_button.active
{
text-decoration
:
none
;
}
.lbdesign_button
{
padding
:
0
.625em
0
.9375em
;
display
:
inline-block
;
background
:
#777
;
color
:
white
;
line-height
:
inherit
;
border-bottom
:
none
;
&
:hover
,
&
:focus
{
background
:
darken
(
#777
,
10%
);
color
:
#fff
;
}
}
/* SIZES */
.lbdesign_small
{
font-size
:
85%
;
}
.lbdesign_large
{
font-size
:
115%
;
}
.lbdesign_xlarge
{
font-size
:
125%
;
}
/* TYPES */
.lbdesign_primary
{
background
:
$primary
;
&
:hover
,
&
:focus
{
background
:
darken
(
$primary
,
10%
);
}
}
.lbdesign_warning
{
background
:
$warning
;
&
:hover
,
&
:focus
{
background
:
darken
(
$warning
,
10%
);
}
}
.lbdesign_highlight
{
background
:
$highlight
;
&
:hover
,
&
:focus
{
background
:
darken
(
$highlight
,
10%
);
}
}
.lbdesign_info
{
background
:
$info
;
&
:hover
,
&
:focus
{
background
:
darken
(
$info
,
10%
);
}
}
.lbdesign_action
{
background
:
$action
;
&
:hover
,
&
:focus
{
background
:
darken
(
$action
,
10%
);
}
}
/* STYLES */
.lbdesign_rounded
{
border-radius
:
0
.3125em
;
}
.lbdesign_pill
{
border-radius
:
2em
;
}
.lbdesign_block
{
display
:
block
;
text-align
:
center
;
}
.lbdesign_full_width
{
width
:
max-content
;
text-align
:
center
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment