Changed the style of non-<input> buttons

Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely 2012-08-09 17:53:55 +02:00
parent 121f6a110c
commit f782c28678
5 changed files with 16 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{# vim: ft=htmljinja
#}
<div id="esemenyek-gomb">
<span id="esemeny-mutato">[események gomb]</span>
<span id="esemeny-mutato" class="gomb">[események gomb]</span>
<div id="esemeny-box">
<div id="esemeny-belso">
<p class="honap">{{ firstDay|date('Y-m') }}</p>

View File

@ -1,7 +1,7 @@
{# vim: ft=htmljinja
#}
<div id="login-gomb">
<span id="login-mutato">Bejelentkezés</span>
<span id="login-mutato" class="gomb">Bejelentkezés</span>
<div id="login-box">
<div id="login-belso">
<form method="post" action="{{ path('KekRozsakSecurityBundle_login_check') }}">

View File

@ -1,7 +1,7 @@
{# vim: ft=htmljinja
#}
<div id="profil-gomb">
<span id="profil-mutato">[avatar] {{ app.user.displayName }}</span>
<span id="profil-mutato" class="gomb">[avatar] {{ app.user.displayName }}</span>
<div id="profil-box">
<div id="profil-belso">
[avatar]

View File

@ -35,15 +35,17 @@
{% include ':Box:UserProfile.html.twig' %}
{% include ':Box:Events.html.twig' %}
<div id="konyvtar-gomb">
<a href="{{ path('KekRozsakFrontBundle_bookList') }}">[könyvtár gomb]</a>
<span class="gomb"><a href="{{ path('KekRozsakFrontBundle_bookList') }}">[könyvtár gomb]</a></span>
</div>
{% else %}
{% include ':Box:Login.html.twig' %}
{% endif %}
{#
<div id="search-box">
<input type="text" />
<button type="submit">Keresés</button>
</div>
#}
</div>
<div id="top-line-padding"></div>
</div>

View File

@ -465,5 +465,15 @@ td.uj-post p .kuldes-gomb {
background-color: #cccccc;
color: black;
white-space: nowrap;
cursor: pointer;
}
#top-line .gomb {
background-color: transparent;
color: #c4d3ff;
}
.gomb a {
color: inherit !important;
}