Changeset 4078 for cats


Ignore:
Timestamp:
11/22/13 15:34:08 (11 years ago)
Author:
andmor
Message:

Added style to override browser style for invalid forms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cats/SCHEMAcat/trunk/urn.org.isocat.schemacat.site/site/styles/SCHEMAcat.css

    r3978 r4078  
    1515/*override animation duration for the following elements*/
    1616#workspace, #schema-div,
    17 #about, #contact{
     17#about, #contact, #accountDetails{
    1818    -webkit-animation-duration: 0.25s;
    1919    -moz-animation-duration: 0.25s;
     
    2626}
    2727
     28/*since angularjs and browsers have diferent rules to conssider an input valid,
     29we override the red border set by the browser (in invalid input fields)
     30with the same border but set by angular*/
     31input.ng-dirty.ng-invalid {
     32    color: #b94a48;
     33    border-color: #e9322d;
     34    -webkit-box-shadow: 0 0 6px #f8b9b7;
     35     -moz-box-shadow: 0 0 6px #f8b9b7;
     36          box-shadow: 0 0 6px #f8b9b7;
     37}
     38
    2839.cursor-pointer{
    2940    cursor:pointer;
     41}
     42
     43.cursor-default{
     44    cursor:default;
    3045}
    3146
Note: See TracChangeset for help on using the changeset viewer.