diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index c46d0fd3d..2067b1f40 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -94,9 +94,20 @@ body.admin { } } + &.fixed { + table-layout: fixed; + } + input[type="submit"] ~ a, a ~ a { - margin-left: $line-height/2; - margin-right: $line-height/2; + margin-left: 0; + margin-right: 0; + margin-top: $line-height/2; + + @include breakpoint(medium) { + margin-left: $line-height/2; + margin-right: $line-height/2; + margin-top: 0; + } } } diff --git a/app/views/admin/poll/polls/_poll.html.erb b/app/views/admin/poll/polls/_poll.html.erb index 7cbc0a352..b65ce3e71 100644 --- a/app/views/admin/poll/polls/_poll.html.erb +++ b/app/views/admin/poll/polls/_poll.html.erb @@ -7,7 +7,7 @@
| <%= t("admin.polls.index.name") %> | <%= t("admin.polls.index.dates") %> | -+ | <%= t("admin.actions.actions") %> | <%= render @polls %> diff --git a/config/locales/admin.en.yml b/config/locales/admin.en.yml index e7c3d65d3..dce934c6c 100755 --- a/config/locales/admin.en.yml +++ b/config/locales/admin.en.yml @@ -2,6 +2,7 @@ en: admin: actions: + actions: Actions confirm: Are you sure? confirm_hide: Confirm hide: Hide diff --git a/config/locales/admin.es.yml b/config/locales/admin.es.yml index 768ef8d83..89082c643 100644 --- a/config/locales/admin.es.yml +++ b/config/locales/admin.es.yml @@ -2,6 +2,7 @@ es: admin: actions: + actions: Acciones confirm: "¿Estás seguro?" confirm_hide: Confirmar hide: Ocultar
|---|