Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

login_menu.css 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright @ 2015 Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /*Initialize*/
  17. ul.loginmenu {
  18. display:none;
  19. position: absolute;
  20. margin: 0;
  21. padding: 5px;
  22. padding-bottom: 7px;
  23. top: 45px;
  24. left: -5px;
  25. background-color: rgba(0,0,0,0.9);
  26. border: 1px solid rgba(256, 256, 256, 0.2);
  27. border-radius:8px;
  28. }
  29. ul.loginmenu li {
  30. list-style-type: none;
  31. padding: 7px;
  32. }
  33. ul.loginmenu li.identity {
  34. color: #fff;
  35. font-size: 11pt;
  36. cursor: default;
  37. }
  38. ul.loginmenu:after {
  39. content: url('../images/dropdownPointer.png');
  40. display: block;
  41. position: absolute;
  42. top: -7px;
  43. left: 18px;
  44. }
  45. li a.authButton{
  46. background-color: #06a5df;
  47. padding-top: 3px;
  48. padding-bottom: 3px;
  49. padding-left: 29px;
  50. padding-right: 29px;
  51. border-radius: 4px;
  52. color: #fff;
  53. font-size: 11pt;
  54. cursor: pointer;
  55. }
  56. span.authentication:hover ul.loginmenu, ul.loginmenu:hover {
  57. display:block !important;
  58. }
  59. a.disabled {
  60. color: gray !important;
  61. pointer-events: none;
  62. }
  63. .loginmenuPadding {
  64. width: 50px;
  65. height: 30px;
  66. position: absolute;
  67. top: -30px;
  68. left: 0px;
  69. }