Table CSS applying to Jquery Datepicker

user3757426

Below is my css for the whole application in my master css file.

table {
width: 100%;
vertical-align: middle;
overflow:visible;}

td{
height:40px;
}

The td height is applying to datepicker. As I am new user here, it is not allowing me to post images. This is how my image looks. Please accept the link. http://imgur.com/Ivn5MqS

adeneo

With CSS3 you can exclude the datepicker (not supported in IE8 and below)

td:not(.ui-datepicker td) {
    height:40px;
}

or give the other tables a class

.mytable {
    width: 100%;
    vertical-align: middle;
    overflow:visible;
}

.mytable td {
    height:40px;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Applying CSS to Table rows

From Dev

.css transform not applying with jquery

From Dev

Set time for applying css in jquery

From Dev

Applying CSS property to html in Jquery

From Dev

.css jquery attribute not applying css to div tag

From Dev

Applying CSS Styles to an existing table that is constructed as a tree

From Dev

jquery-datatables-rails gem not applying to table

From Dev

Applying jQuery toggle function to each table

From Dev

CSS: Images not showing for JQuery datepicker

From Dev

css trying to resize jQuery datepicker

From Dev

JQuery datepicker not showing properly with css

From Dev

jQuery UI DatePicker: no CSS, no selection

From Dev

jquery .css() is not applying in IE9

From Dev

Applying a css gradient to an element dynamically in JQuery

From Dev

Applying CSS for mutiple id is not working in jquery

From Dev

Applying CSS transform with jQuery using a variable

From Dev

Applying a css property in jquery function callback

From Dev

jquery .css() not applying -webkit-transform

From Dev

Jquery.css not applying Background-Image

From Dev

jQuery applying css classes after f:ajax

From Dev

Applying CSS through jQuery to several selectors simultaneously

From Dev

Applying CSS transform with jQuery using a variable

From Dev

Applying CSS for mutiple id is not working in jquery

From Dev

CSS styling not applying to jquery popup window

From Dev

Button style applying to DatePicker

From Dev

css is not applying

From Dev

Create Jquery datepicker in dynamically generated table rows

From Dev

jquery rain datepicker firefox CSS not working

From Dev

jQuery ui - datepicker: month and year dropdown css

Related Related

HotTag

Archive