diff --git a/core/themes/seven/css/components/admin-list.css b/core/themes/seven/css/components/admin-list.css index 5d0b63d..782688e 100644 --- a/core/themes/seven/css/components/admin-list.css +++ b/core/themes/seven/css/components/admin-list.css @@ -12,17 +12,18 @@ ul.admin-list { list-style-type: none; list-style-image: none; padding: 0; + padding-bottom: 14px; } .admin-list.compact li { border: none; } -.admin-list li a { +.admin-list li a:nth-of-type(2) { background: url(../../../../misc/icons/bebebe/chevron-disc-right.svg) no-repeat 1px 16px; /* LTR */ display: block; - padding: 14px 15px 14px 25px; /* LTR */ + padding: 14px 15px 0px 25px; /* LTR */ min-height: 0; } -[dir="rtl"] .admin-list li a { +[dir="rtl"] .admin-list li a:nth-of-type(2) { background: url(../../../../misc/icons/bebebe/chevron-disc-left.svg) no-repeat right 16px; padding-right: 25px; padding-left: 15px; @@ -44,3 +45,25 @@ ul.admin-list { .admin-list li a:active .label { text-decoration: underline; } + +.click{ + position:relative!important; +} + +.click a:first-child>span{ + position:absolute; + width:100%; + height:100%; + top:0; + left:0; + text-decoration:none; + z-index:10; /* raises anchor tag above everything else in div */ + background-color:white; /*workaround to make clickable in IE */ + opacity: 0; /*workaround to make clickable in IE */ + filter: alpha(opacity=1)!important; /*workaround to make clickable in IE */ +} + +.click div.description, .click + div.description{ + margin-left:25px; +} + diff --git a/core/themes/seven/templates/node-add-list.html.twig b/core/themes/seven/templates/node-add-list.html.twig index 897dd1e..0e6f88a 100644 --- a/core/themes/seven/templates/node-add-list.html.twig +++ b/core/themes/seven/templates/node-add-list.html.twig @@ -15,15 +15,29 @@ #} {% if content %} {% else %}

{% set create_content = path('node.type_add') %} {% trans %} - You have not created any content types yet. Go to the content type creation page to add a new content type. + You have not created any content types yet. Go to the content type creation page + to add a new content type. {% endtrans %}

{% endif %}