-1
votes
0answers
19 views

Sass only converting to .sass, not .scss using prompt sass-convert [closed]

So I'm on Windows and working from standard cmd prompt, though the issue seems like it would be applicable to any POSIX prompt as well. The language for either with sass is identical. So the ...
0
votes
2answers
27 views

Inline conditional statement using haml css

How do you write inline if else in haml/css? Here is my working code: - if unit > 10 = value - else .unit = value I tried to make it inline like the below, but that doesnt work: ...
0
votes
1answer
24 views

In this Rails app view loop, how can I include CSS button styling?

I want the "complete" below to have a fake button styling, basically a border and a colored interior. What would be the best way to do this? I tried to suffix class: 'btn btn-mini' but that doesn't ...
0
votes
0answers
49 views

Will Paginate Button Modify with CSS

I am using the will_paginate gem. I want to modify my Button(i.e next, previous, page_links). I have successfully modified the 'next' and 'previous' buttons and their CSS. However, I getting a problem ...
1
vote
4answers
54 views

Use picture as submit button

I would like to make my submit button for my login page be a picture instead of the grey button. When I use css to do this I get the button on top of the picture. Is there a way to use = submit_tag ...
0
votes
1answer
50 views

HAML Twitter Bootstrap Tabs Doesn't Work Properly Ruby on Rails

I am having trouble with twitter bootstrap tabs in (HAML) ruby on rails. The tabs are showing up but the content doesn't change when I click on the respective tabs. The statements below are also ...
1
vote
1answer
71 views

CSS only shows correctly on index page. Ruby On Rails

I am new to Ruby On Rails and am trying to get a css template to work for a project. It works fine on my index page but on every other page it doesn't seem to be getting the complete layout from the ...
0
votes
0answers
19 views

dynamically set a class based on login ruby on rails

I have a CSS problem that I've been trying to figure out for awhile now and just can't seem to be able to figure it out. Maybe someone could help me? I have a div whose size I want to change based ...
0
votes
2answers
132 views

Why does rake assets:precompile produce an empty css stylesheet?

I'm using sass-rails and haml-rails gems, so that I can write css file in HAML-sass style. The thing is when I want to go for production and precompile my stylesheet, the command rake ...
0
votes
1answer
71 views

What does “-” mean in haml?

I am pretty new to web-design and working on some code that part of it is like this: .row-fluid - if(params[:offset].to_i>0) = link_to t('.previous'), reports_path(offset: ...
0
votes
1answer
92 views

Drop down menu inside a Table with Haml

I need to code in haml a drop down menu inside a column of a table, i cant test it yet but i want to make sure if i am doing well with my following snippets code that i paste it down. It's just a css ...
1
vote
1answer
84 views

jquery remove particular accordion class

This code runs fine in fiddle: You can expand/collapse all items and also expand/collapse individual items. Now I have added some logic in ruby (i cannot add that in jsfiddle) .accordion-body{id: ...
0
votes
1answer
76 views

Increase the width of div ignoring the width of container-parent (and use x scrollbar)

Let me explain with madskillz. The current status I'm doing a gallery which is formed by array of urls. Haml code: %section#content %form %fieldset #gallery %i.gallery_title ...
0
votes
2answers
47 views

how to get rid of bullet in haml ul

so here's an ul in haml that I have .content .testing .testing-ul2 %ul %li a b c .testing-ul2 %ul %li d ...
0
votes
1answer
229 views

Buttons on the same line in twitter bootstrap

There are buttons and one button group %button.btn{type: :submit}button1 %button.btn{type: :submit}button2 %button.btn{type: :submit}button3 .btn-group{"data-toggle" => "buttons-radio"} ...
0
votes
1answer
70 views

Haml: for whom is it? [closed]

In professional development different people make code for web applications and HTML for views. First are programmers and second are HTML markup developer with basic programming skills, but with good ...
0
votes
1answer
107 views

Using Haml with the inline-block spacing gaps

So I read the solutions regarding making the spacing go away when using inline-block as opposed to floats: display: inline-block extra margin and ...
0
votes
1answer
169 views

How do I increment a Twitter Bootstrap progress bar in HAML?

I am just starting to learn building small web apps using Sinatra, HAML and Twitter Bootstrap. In my application, an action takes place every 500 seconds. I would like to place a progress bar on my ...
0
votes
4answers
73 views

Align input and button on one line

I have such table part: <td> <form accept-charset="UTF-8" action="/line_items" method="post"> <input class="qnt_to_cart2" id="110040Q" name="cart_quantity" ...
1
vote
1answer
97 views

Html pattern not null and not negative

How can i write such pattern: 1) Not negative: so only numbers from 1 to 999 2) Null Can't be first char 3) Non empty field For example: 01, , -1, 1500, abc, etc - are false Now i have only ...
-1
votes
1answer
174 views

How to center 2 floating divs within another div

I have the following haml code to display a user avatar and a user nickname + bio .page_section.header .user_info_container //float left .avatar_container.pull_left .avatar ...
1
vote
1answer
143 views

Every Other Row | Nth column of table in Haml

Trying to make a table in HAML, and I have the following: %table %tbody %tr %th{:rowspan => 2} Name %th{:class => "leftBorderS", :colspan => 5} Monday %th{:class ...
0
votes
1answer
49 views

On every page footer margin is different

I have web page, and i must to stick footer on bottom of page. I have code for you here: 1) http://jsfiddle.net/6P3Ag/ 2) http://jsfiddle.net/bmzgp/ Also please see preview on jsfiddle, like ...
1
vote
1answer
62 views

Rails mailer styling

Why i recieve default style mail's on my mail? In code i style it a little bit, but why on gmail i see default layout? My code is such: !!! %html %head %meta{:content => "text/html; ...
0
votes
1answer
119 views

How do you properly include a conditional css file for IE in Rails 3.1+ (asset pipeline) and haml?

The solutions I've searched online do not work. I currently have rails 3.1 and haml installed. The ie.css file is located under app/assets/stylesheets right next to the application.css. I tried the ...
2
votes
2answers
43 views

haml code how to make it has some indention

I have the following code that displaying element like below Mytable 1. line1 2. line2 3. line3 4. line4 but I want it have indention, like belows Mytable 1. line1 2. line2 ...
0
votes
0answers
121 views

How to position an autocomplete table div

Hi I am implementing an autocomplete functionality in my app whereby a table will appear with the results after the user types in some text in a input textbox The CSS used to 'position' the ...
1
vote
1answer
57 views

How can I set the CSS class of an element in a Rails view?

How can I set the class of an element in a Rails view's haml? For example, suppose I want to set the CSS class of a %td% element that's written like this to the "red" class: %td= book.author How ...
1
vote
3answers
139 views

Font color of list item doesn't inherit correctly from CSS

I have the following headermenu: %div.header %div.span-25 = link_to logo, root_path %div.span-25 %div.headermenu %ul - if current_page?(root_path) %li.currentmenu ...
0
votes
1answer
75 views

I want to make a div contain the default action (pressing <Enter> in this case) instead of having to create a button

This is only a problem in IE8. It works fine in Firefox, Chrome, Safari and even IE9. Anyway, I have a div on my app's login page that I have styled to look like a giant gray button. Here is the code: ...
1
vote
1answer
81 views

haml & scss - two styles on one line

I currently have this code, i need the white text to be white, and the green text to be green, but them all to be on the same line.. i'm new to haml and scss so i'm sure this is something really ...
1
vote
2answers
943 views

Automate Haml & Sass with Sublime Text 2 for Windows

I am a front-end guy using Windows for design and html/js/css coding. My work is separate from the back-end guy using .NET. I am also new to Haml/Sass thing as well as Ruby. And definitely not using ...
0
votes
1answer
43 views

How to display this images inline?

I'm struggling with this for over an hour. I want images in classes "up" and "down" to display inline. What am I overlooking? I tried also display:inline, but it's also doesn't work. If it is ...
1
vote
1answer
136 views

Rails Haml element styling

I have a custom style in my css for a background image I want to apply: .specialbg { background-image: url('http://i.imgur.com/XMuKF.jpg') no-repeat center center fixed; -webkit-background-size: ...
0
votes
1answer
121 views

UL not displaying inline

I'm trying to make an unordered list to have inline display. I have the following haml: %ul.nav-dashboard %li.orders_nav{:class => is_active_menu?(user_orders_path(params[:user_id]))} = ...
1
vote
1answer
169 views

Devise does not load custom CSS

So, we recently started our change from a custom made authentication module to devise, and I am having a really bad time trying to figure out how to load my css into my devise views. I can properly ...
0
votes
0answers
142 views

How fix anchors in css slider?

I have a slider without a script. But there is a slight problem, it works with anchor, so the page is scrolled all the time, when the switch slide. Is there any way to fix this? If I add ...
0
votes
0answers
48 views

Page loads only partially on navigating between tabs

I have a webpage with a few tabs. On switching to a tab, half of the content of the previous tab overlaps with the content on the current tab. On refresh, the page looks fine. This problem is ...
0
votes
1answer
264 views

load external css file into haml

I'm using haml and sinatra When the css is in the .haml file, the styling works. When I use %link, the styling is not seen %link(rel="stylesheet" type="text/css" href="styles.css")
0
votes
2answers
200 views

My haml view is unable to find the css file in my public/css folder when deployed, but manages to find it on localhost

My application is running on Sinatra and deployed on my Apache web server using Passenger. My directory structure is as follows: approot ` public ` css - bootstrap.css ` uploads - ...
0
votes
0answers
74 views

how to change number of data in view depends upon resolution change?

i want when browser resolution decrease using ctrl- its increase number columns in a rows and when browser resolution increase using ctrl+ its decrease number of columns in a rows . i m using haml and ...
2
votes
2answers
116 views

how to keep elements in one row in css

I am trying to keep elements in header in one row. My current styles working but one problem is when I make my browser smaller or squeeze it (from right to left) then at one point the search element ...
1
vote
1answer
308 views

Haml - adding a display:none to a p tag isn't working

I am trying to do this: %p{:style=>"display:none;"} %h4= t("labels.shortened_urls.fqdn_url") =f.url_field :fqdn_url, {:readonly => true} %small=link_to((t ...
0
votes
1answer
103 views

Can't load a Bootstrap.css library

I have a Ruby application, and here is my setup: I have this HAML code: .alert.alert-info %p="This is the correct style." The sidebar.css has this: /* * THIS IS THE MANIFEST FILE FOR THE ...
0
votes
3answers
90 views

How to implement block style for list

I have the following HAML code //haml code for template .activities_section %ul.row_one %li %a{href: "#"} lol %li %a{href: "#"} watched a movie %li %a{href: "#"} read ...
1
vote
3answers
337 views

how to place text and a tabbed navigation next to each other

I have written a text inside h2 and next to that i want to show a tabbed navigation but that tabbed navugation is not being placed next to it ,its going below h2 as shown in following image inside ...
0
votes
2answers
2k views

How to put Facebook and Twitter buttons next to each other?

I've been trying to solve this for 5 hours now and nothing I do seems to work. I have a Facebook like button and a Twitter follow button and I want them to be side by side but the Twitter button keeps ...
0
votes
2answers
298 views

Sass Color Functions List Gradient

I'm trying to assigne a different background-color to each %li tag in my list. I'd like those colors to either use shades of a color, or gradient between two stated colors. Much like the oh-so-popular ...
0
votes
1answer
445 views

How to lock div to the top of the page

I am using haml to build my web app. In my page I have 2 sections, header and avatar thumbnails. I want to keep the header section locked at the top of the page but the rest of the page scrollable. ...
1
vote
1answer
666 views

How do I successfully interpolate Ruby inside the CSS attribute of a HAML %li HTML tag?

Long time listener, first time caller. I'm a 6 month old dev from Code Academy here in Chicago, and I've been stuck on this problem for a few hours. Beforehand, I appreciate all of your assistance and ...

1 2