diff --git a/dist/ionic.css b/dist/ionic.css index 497a840ee2..73a7f6e410 100644 --- a/dist/ionic.css +++ b/dist/ionic.css @@ -134,7 +134,8 @@ main > * { .button.button-inline { display: inline-block; } .button.button-borderless { - border: none; } + border: none; + padding: 2px 6px; } .button-group { position: relative; @@ -546,6 +547,12 @@ a.button { box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.12); border-color: black; } +.button-transparent { + background: transparent; } + +.button-borderless [class^="icon-"], [class*=" icon-"] { + font-size: 2.3em; } + .list-divider { background-color: whitesmoke; color: #222222; diff --git a/example/panels.html b/example/panels.html index 338c92c56b..efabfbe8f7 100644 --- a/example/panels.html +++ b/example/panels.html @@ -5,7 +5,7 @@ - + @@ -14,9 +14,13 @@
- +

Panels

- +
diff --git a/scss/ionic/structure/_button.scss b/scss/ionic/structure/_button.scss index 9f51021d07..45124cefa2 100644 --- a/scss/ionic/structure/_button.scss +++ b/scss/ionic/structure/_button.scss @@ -12,5 +12,6 @@ &.button-borderless { border: none; + padding: 2px 6px; } } diff --git a/scss/ionic/theme/_button.scss b/scss/ionic/theme/_button.scss index ce1ec329d2..639ce2fefa 100644 --- a/scss/ionic/theme/_button.scss +++ b/scss/ionic/theme/_button.scss @@ -34,3 +34,10 @@ a.button { .button-dark { @include button-style($buttonDarkBackground, $buttonDarkBorder, $lightColor); } +.button-transparent { + background: transparent; +} + +.button-borderless [class^="icon-"], [class*=" icon-"] { + font-size: 2.3em; +} \ No newline at end of file