You are here

popups-skin.css in Popups API (Ajax Dialogs) 5

Same filename and directory in other branches
  1. 6 popups-skin.css
#popups {
  border: 2px solid #EDF5FA;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  opacity: 0.9;
}
#popups-title {
  border-bottom: 1px solid #b4d7f0;
  background-color: #d4e7f3;
  color: #455067;
  margin-bottom: 0.25em;
  padding: 0.25em;
  -moz-border-radius-topleft: 5px;
  -webkit-border-radius-topleft: 5px;
}
#popups-title #popups-close a {
  color: red;  
}
#popups input {
  margin: 0.1em;
}
#popups input[type="text"]:focus, #popups input[type="password"]:focus, #popups textarea:focus {
  background-color: #FFA;
  outline: thin solid grey;
}
a.popups-processed:after {
  content: "\25A1";
  vertical-align: super;
  font-size: smaller; 
}

File

popups-skin.css
View source
  1. #popups {
  2. border: 2px solid #EDF5FA;
  3. -moz-border-radius: 8px;
  4. -webkit-border-radius: 8px;
  5. opacity: 0.9;
  6. }
  7. #popups-title {
  8. border-bottom: 1px solid #b4d7f0;
  9. background-color: #d4e7f3;
  10. color: #455067;
  11. margin-bottom: 0.25em;
  12. padding: 0.25em;
  13. -moz-border-radius-topleft: 5px;
  14. -webkit-border-radius-topleft: 5px;
  15. }
  16. #popups-title #popups-close a {
  17. color: red;
  18. }
  19. #popups input {
  20. margin: 0.1em;
  21. }
  22. #popups input[type="text"]:focus, #popups input[type="password"]:focus, #popups textarea:focus {
  23. background-color: #FFA;
  24. outline: thin solid grey;
  25. }
  26. a.popups-processed:after {
  27. content: "\25A1";
  28. vertical-align: super;
  29. font-size: smaller;
  30. }