Commit fbba6437b603b2f62fb1ce08b330c95f2f855002

Authored by Juliana
1 parent e96b8acd
Exists in master and in 79 other branches add_sisp_to_chef, add_super_archives_plugin, api_for_colab, automates_core_packing, backup_not_prod, changes_in_buttons_on_content_panel, colab_automated_login, colab_spb_plugin_recipe, colab_widgets_settings, design_validation, dev_env_minimal, disable_email_dev, fix_breadcrumbs_position, fix_categories_software_link, fix_edit_institution, fix_edit_software_with_another_license, fix_get_license_info, fix_gitlab_assets_permission, fix_list_style_inside_article, fix_list_style_on_folder_elements, fix_members_pagination, fix_merge_request_url, fix_models_translations, fix_no_license, fix_software_api, fix_software_block_migration, fix_software_communities_translations, fix_software_communities_unit_test, fix_style_create_institution_admin_panel, fix_superarchives_imports, fix_sym_links_noosfero, focus_search_field_theme, gov-user-refactoring, gov-user-refactoring-rails4, header_fix, institution_modal_on_rating, kalibro-conf-refactoring, kalibro-processor-package, lxc_settings, margin_fix, mezuro_cookbook, prezento, refactor_download_block, refactor_software_communities, refactor_software_for_sisp, register_page, release-process, release-process-v2, remove-unused-images, remove_broken_theme, remove_secondary_email_from_user, remove_sisp_buttons, removing_super_archives_email, review_message, scope2method, signals_user_noosfero, sisp_catalog_header, sisp_colab_config, sisp_dev, sisp_dev_master, sisp_simple_version, software_as_organization, software_catalog_style_fix, software_communities_html_refactor, software_infos_api, spb_minimal_env, spb_to_rails4, spec_refactor, stable-4.1, stable-4.2, stable-4.x, temp_soft_comm_refactoring, theme_header, theme_javascript_refactory, thread_dropdown, thread_page, update_search_by_categories, update_software_api, update_softwares_boxes

User register form

cadastro.css 0 → 100644
... ... @@ -0,0 +1,126 @@
  1 +/*cadastro de usuario e instituicao*/
  2 +
  3 +#signup-form {
  4 + display:block;
  5 + background-color:#F0F0F0;
  6 + border-left:solid 3px;
  7 + border-top:solid 1px;
  8 + width: 720px;
  9 +}
  10 +
  11 +#signup-form-header {
  12 + width:90% !important;
  13 +}
  14 +
  15 +#signup-form-profile{
  16 + width:90% !important;
  17 +}
  18 +
  19 +#signup-formfield-group {
  20 + background: url(images/hdot2.gif) repeat-x bottom #ECECEC;
  21 +
  22 +}
  23 +#signup-formfield-group:hover {
  24 + background: url(../images/hdot2.gif) repeat-x bottom #f1e5dc;
  25 +}
  26 +
  27 +/*#signup-form .formlabel {
  28 + color: #4A4A4A;
  29 + font-size: 20px;
  30 + font-weight: normal;
  31 + text-align: left;
  32 + float: left;
  33 +
  34 +}*/
  35 +.action-account-signup #content {
  36 + text-align: left;
  37 +}
  38 +
  39 +.required-field label.formlabel {
  40 +font-weight: bold;
  41 +color: #c00;
  42 +float: left;
  43 +}
  44 +
  45 +#signup-form select, #signup-form textarea, #signup-form input {
  46 +/*padding: 7px 7% 10px 3%; */
  47 + height: 30px !important;
  48 + width: 50%;
  49 + float:center;
  50 + margin:3px 2px 3px 0px;
  51 +}
  52 +
  53 +.formlabel{
  54 + float:left;
  55 + padding:0px 15px 0px 0px;
  56 + width:237px;
  57 + height:30px;
  58 + margin:3px 2px 10px 0px;
  59 +}
  60 +
  61 +.formfieldline {
  62 + /*background-color:#E7E7E7;*/ /*colorir linhas especificas*/
  63 + width:100%;
  64 + background: url(images/hdot2.gif) repeat-x bottom #ECECEC;
  65 + margin:0px 10px 10px 0px;
  66 +
  67 +}
  68 +.formfieldline:hover {
  69 + background: url(../images/hdot2.gif) repeat-x bottom #f1e5dc;
  70 +}
  71 +
  72 +.formfield input, .formfield textarea{
  73 + background-color:#fff;
  74 + width:50%;
  75 +}
  76 +
  77 +#content a.button.with-text {
  78 + line-height: 50px !important;
  79 +}
  80 +
  81 +#status-identifier{
  82 + width:50%;
  83 + height:30px;
  84 +}
  85 +
  86 +#content form input.button.submit{
  87 + margin:13px;
  88 +}
  89 +#errorExplanation{
  90 + width:720px;
  91 +}
  92 +
  93 +
  94 +/**** mudar para a cor do icone e link da imagem passado pela suzete
  95 +
  96 +#signup-form .invalid {
  97 +border-color: #7f0000;
  98 +background-image: url(images/alerta-cadastro16.jpg);
  99 +box-shadow: 0 0 7px red;
  100 +
  101 +} */
  102 +
  103 +/**** talvez para os botoes****
  104 +#content a.button.with-text {
  105 +line-height: 30px !important;
  106 +border: none;
  107 +float: right;
  108 +margin: 3px;
  109 +border-radius: 8px;
  110 +} *****/
  111 +
  112 +/****modal***/
  113 +#institutions_cnpj, #community_country, #type_PublicInstitution, #institutions_acronym {
  114 + width:200px;
  115 +
  116 +}
  117 +
  118 +.formfield .type-radio{
  119 + width:200px;
  120 + float:left;
  121 +}
  122 +
  123 +#institution_dialog{
  124 + background-color:#F0F0F0;
  125 +}
  126 +
... ...
footer.html.erb
... ... @@ -85,12 +85,12 @@
85 85 <!-- </div>
86 86 <!-- fim .container2 -->
87 87 <div class="footer-logos">
88   - <div class="container2">
89   - <a href="http://www.acessoainformacao.gov.br/" class="logo-acesso pull-left"><img src="{{ STATIC_URL }}img/acesso-a-informacao.png" alt="Acesso a Informação"></a>
  88 + <!-- <div class="container2">
  89 + <a href="http://www.acessoainformacao.gov.br/" class="logo-acesso pull-left"><img src="{{ STATIC_URL }}img/acesso-a-informacao.png" alt="Acesso a Informação"></a> -->
90 90 <!-- separador para fins de acessibilidade -->
91 91 <span class="hide">&nbsp;</span>
92 92 <!-- fim separador para fins de acessibilidade -->
93   - <a href="http://www.brasil.gov.br/" class="brasil pull-right"><img src="{{ STATIC_URL }}img/brasil.png" alt="Brasil - Governo Federal"></a>
  93 + <!-- <a href="http://www.brasil.gov.br/" class="brasil pull-right"><img src="{{ STATIC_URL }}img/brasil.png" alt="Brasil - Governo Federal"></a> -->
94 94 </div>
95 95 </div>
96 96  
... ...
images/alerta-cadastro16.jpg 0 → 100644

18.5 KB

images/hdot2.gif 0 → 100644

43 Bytes

images/login16.png 0 → 100644

1.66 KB

style.css
... ... @@ -8,6 +8,9 @@
8 8 /****************** cabecalho azul ********************/
9 9 @import url(cabecalho-cinza-theme.css);
10 10 /****************** FIM cabecalho azul ******************/
  11 +/****************** cadastro ********************/
  12 +@import url(cadastro.css);
  13 +/****************** FIM cabecalho azul ****************/
11 14  
12 15 @import url(../../icons/tango/style.css);
13 16  
... ...