summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMatt Watson <mattdangerw@gmail.com>2014-05-12 18:55:20 -0700
committerMatt Watson <mattdangerw@gmail.com>2014-05-13 12:50:08 -0700
commit5322120ff20e7a14346352a80fe875a37715d75b (patch)
tree9105d6cbc9d3add054bd83185b01e67b245be514 /data
parent742e9677579996cd4eff0f5c2aae0ab3446b6809 (diff)
Remove action button
Wasn't getting used in any apps so we are taking it out [endlessm/eos-sdk#985]
Diffstat (limited to 'data')
-rw-r--r--data/css/endless-widgets.css144
1 files changed, 0 insertions, 144 deletions
diff --git a/data/css/endless-widgets.css b/data/css/endless-widgets.css
index c820fbc..fe1a6fd 100644
--- a/data/css/endless-widgets.css
+++ b/data/css/endless-widgets.css
@@ -73,147 +73,3 @@ EosWindow {
color-stop(0.95, rgb(71, 71, 71)),
color-stop(0, rgb(67, 67, 67)));
}
-
-/* Endless action button */
-
-EosActionButton {
- background-color: transparent;
- border-style: solid;
- border-image: none;
- margin: 10px;
-
- border-radius: 40px;
- border-width: 8px;
-}
-
-EosActionButton GtkLabel {
- font-weight: normal;
- font-size: 13px;
-}
-
-/* Endless action button: sizes */
-
-EosActionButton.primary {
- border-radius: 40px;
- border-width: 8px;
-}
-
-EosActionButton.secondary {
- border-radius: 30px;
- border-width: 6px;
-}
-
-EosActionButton.tertiary {
- border-radius: 23px;
- border-width: 5px;
-}
-
-EosActionButton.quaternary {
- border-radius: 17px;
- border-width: 4px;
-}
-
-/* Endless action button: light background */
-
-/* normal */
-EosActionButton,
-EosActionButton:selected,
-EosActionButton:focused {
- border-color: alpha(#323232, 0.5);
- box-shadow: 1px 1px 1px alpha(black, 0.8) inset,
- 0px -1px 1px alpha(white, 0.65);
-}
-
-EosActionButton GtkImage,
-EosActionButton GtkImage:selected,
-EosActionButton GtkImage:focused {
- color: alpha(#323232, 0.5);
-}
-
-EosActionButton GtkLabel,
-EosActionButton GtkLabel:selected,
-EosActionButton GtkLabel:focused {
- color: alpha(#323232, 0.65);
-}
-
-/* hover */
-EosActionButton:hover {
- border-color: alpha(#323232, 0.8);
- box-shadow: 1px 1px 1px alpha(black, 0.8) inset;
-}
-
-EosActionButton GtkImage:hover {
- color: alpha(#282828, 0.8);
-}
-
-EosActionButton GtkLabel:hover {
- color: alpha(#1E1E1E, 0.8);
-}
-
-/* pressed */
-EosActionButton:active {
- border-color: alpha(#323232, 0.65);
- box-shadow: 1px 1px 1px alpha(black, 0.8) inset;
-}
-
-EosActionButton GtkImage:active {
- color: alpha(#282828, 0.65);
-}
-
-EosActionButton GtkLabel:active {
- color: alpha(#1E1E1E, 0.8);
-}
-
-/* insensitive, just in case */
-EosActionButton:insensitive,
-EosActionButton:inconsistent {
- border-color: alpha(#888888, 0.50);
- box-shadow: none;
-}
-
-/* Endless action button: dark background */
-
-/* normal */
-.dark EosActionButton,
-.dark EosActionButton:selected,
-.dark EosActionButton:focused {
- border-color: alpha(#E6E6E6, 0.5);
- box-shadow: 1px 1px 1px alpha(black, 0.95) inset,
- 0px -1px 1px alpha(white, 0.5) inset;
-}
-
-.dark EosActionButton GtkImage,
-.dark EosActionButton GtkImage:selected,
-.dark EosActionButton GtkImage:selected,
-.dark EosActionButton GtkLabel,
-.dark EosActionButton GtkLabel:selected,
-.dark EosActionButton GtkLabel:focused {
- color: alpha(#E6E6E6, 0.5);
-}
-
-/* hover */
-.dark EosActionButton:hover {
- border-color: alpha(white, 0.8);
- box-shadow: 1px 1px 1px alpha(black, 0.95) inset,
- 0px -1px 1px alpha(white, 0.85) inset;
-}
-
-.dark EosActionButton GtkImage:hover,
-.dark EosActionButton GtkLabel:hover {
- color: alpha(white, 0.8);
-}
-
-/* pressed */
-.dark EosActionButton:active {
- border-color: alpha(white, 0.65);
- box-shadow: 1px 1px 1px alpha(black, 0.95) inset,
- 0px -1px 1px alpha(white, 0.7) inset;
-}
-
-.dark EosActionButton GtkImage:active {
- color: alpha(white, 0.65);
-}
-
-.dark EosActionButton GtkLabel:active {
- color: alpha(white, 0.8);
-}